From 9ea80f8f11ab571ab00fa4cb7285d884e79616c8 Mon Sep 17 00:00:00 2001 From: Misty Stanley-Jones Date: Mon, 17 Nov 2014 11:59:45 +1000 Subject: [PATCH] HBASE-12488 Small bug in publish_hbase_website.sh script --- dev-support/publish_hbase_website.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-support/publish_hbase_website.sh b/dev-support/publish_hbase_website.sh index f63cc21..0350a6d 100755 --- a/dev-support/publish_hbase_website.sh +++ b/dev-support/publish_hbase_website.sh @@ -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 -- 2.1.2