HBASE-12488 Small bug in publish_hbase_website.sh script
This commit is contained in:
parent
0255fc2bf1
commit
9ea80f8f11
|
@ -90,7 +90,7 @@ if [ $INTERACTIVE ]; then
|
||||||
[Yy]* )
|
[Yy]* )
|
||||||
mvn clean package javadoc:aggregate site site:stage -DskipTests
|
mvn clean package javadoc:aggregate site site:stage -DskipTests
|
||||||
status=$?
|
status=$?
|
||||||
if [ $status != 0 ]; then
|
if [ $status -ne 0 ]; then
|
||||||
echo "The website does not build. Aborting."
|
echo "The website does not build. Aborting."
|
||||||
exit $status
|
exit $status
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue