HBASE-12134 publish_hbase_website.sh script can delete the website accidentally
This commit is contained in:
parent
ff31691c84
commit
456e9fa7a7
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue