Repository: kylin
Updated Branches:
  refs/heads/2.0-rc 95970d5e1 -> 5bcb78d06


KYLIN-1363 Fix unary operator expected bug

Signed-off-by: honma <ho...@ebay.com>


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/c2f523ca
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/c2f523ca
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/c2f523ca

Branch: refs/heads/2.0-rc
Commit: c2f523ca407dc2dcd02015ed3f5b559ffe5b969a
Parents: 95970d5
Author: Hao Chen <h...@apache.org>
Authored: Sun Jan 24 14:28:49 2016 +0800
Committer: honma <ho...@ebay.com>
Committed: Wed Jan 27 21:51:05 2016 +0800

----------------------------------------------------------------------
 build/bin/kylin.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/c2f523ca/build/bin/kylin.sh
----------------------------------------------------------------------
diff --git a/build/bin/kylin.sh b/build/bin/kylin.sh
index 77a17a8..107ca73 100644
--- a/build/bin/kylin.sh
+++ b/build/bin/kylin.sh
@@ -22,7 +22,7 @@ source ${dir}/check-env.sh
 mkdir -p ${KYLIN_HOME}/logs
 
 # start command
-if [ $1 == "start" ]
+if [ "$1" == "start" ]
 then
     if [ -f "${KYLIN_HOME}/pid" ]
     then
@@ -91,7 +91,7 @@ then
     exit 0
 
 # stop command
-elif [ $1 == "stop" ]
+elif [ "$1" == "stop" ]
 then
     if [ -f "${KYLIN_HOME}/pid" ]
     then

Reply via email to