You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by ji...@apache.org on 2014/01/07 14:48:48 UTC

git commit: TAJO-484: Fix bug [: !=: unary operator expected when execute start-tajo.sh. (DaeMyung Kang via jihoon)

Updated Branches:
  refs/heads/master 19a756d75 -> ed8b8ec3c


TAJO-484: Fix bug [: !=: unary operator expected when execute start-tajo.sh. (DaeMyung Kang via jihoon)


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

Branch: refs/heads/master
Commit: ed8b8ec3cc55459e68dace6142ebb96c2b885482
Parents: 19a756d
Author: Jihoon Son <ji...@apache.org>
Authored: Tue Jan 7 22:48:22 2014 +0900
Committer: Jihoon Son <ji...@apache.org>
Committed: Tue Jan 7 22:48:22 2014 +0900

----------------------------------------------------------------------
 CHANGES.txt                 | 3 +++
 tajo-dist/src/main/bin/tajo | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tajo/blob/ed8b8ec3/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 0253ddb..69e36b5 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -200,6 +200,9 @@ Release 0.8.0 - unreleased
 
   BUG FIXES
 
+    TAJO-484: Fix bug [: !=: unary operator expected when execute start-tajo.sh.
+    (DaeMyung Kang via jihoon)
+
     TAJO-479: Rename obsolete name 'partition' to 'shuffle and fix the broken
     taskdetail.jsp. (hyunsik).
 

http://git-wip-us.apache.org/repos/asf/incubator-tajo/blob/ed8b8ec3/tajo-dist/src/main/bin/tajo
----------------------------------------------------------------------
diff --git a/tajo-dist/src/main/bin/tajo b/tajo-dist/src/main/bin/tajo
index d1682ce..2d976de 100755
--- a/tajo-dist/src/main/bin/tajo
+++ b/tajo-dist/src/main/bin/tajo
@@ -281,7 +281,7 @@ if [ -d ${HIVE_LIB} ]; then
   done
 fi
 
-if [ ${HIVE_JDBC_DRIVER_DIR} != "" ]; then
+if [ "${HIVE_JDBC_DRIVER_DIR}" != "" ]; then
   CLASSPATH=${CLASSPATH}:$HIVE_JDBC_DRIVER_DIR;
 fi