HBASE-12134 publish_hbase_website.sh script can delete the website accidentally

This commit is contained in:
Misty Stanley-Jones 2014-10-01 15:44:21 +10:00
parent ff31691c84
commit 456e9fa7a7
1 changed files with 10 additions and 0 deletions

View File

@ -89,6 +89,11 @@ if [ $INTERACTIVE ]; then
case $yn in
[Yy]* )
mvn clean package javadoc:aggregate site site:stage -DskipTests
status=$?
if [ $status != 0 ]; then
echo "The website does not build. Aborting."
exit $status
fi
;;
[Nn]* )
echo "Not building the site."
@ -97,6 +102,11 @@ if [ $INTERACTIVE ]; then
else
echo "Building the site in auto mode."
mvn clean package javadoc:aggregate site site:stage -DskipTests
status=$?
if [ $status != 0 ]; then
echo "The website does not build. Aborting."
exit $status
fi
fi