HBASE-12488 Small bug in publish_hbase_website.sh script

This commit is contained in:
Misty Stanley-Jones 2014-11-17 11:59:45 +10:00
parent 0255fc2bf1
commit 9ea80f8f11
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ if [ $INTERACTIVE ]; then
[Yy]* )
mvn clean package javadoc:aggregate site site:stage -DskipTests
status=$?
if [ $status != 0 ]; then
if [ $status -ne 0 ]; then
echo "The website does not build. Aborting."
exit $status
fi