You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by ta...@apache.org on 2016/09/12 22:28:17 UTC

incubator-impala git commit: Fix typo in buildall.sh introduced in IMPALA-4006

Repository: incubator-impala
Updated Branches:
  refs/heads/master 13fc14d8a -> 78e129c92


Fix typo in buildall.sh introduced in IMPALA-4006

The typo resulted in a silent failure: an error message was printed in
the middle of the buildall.sh output and the branch was never taken.

Change-Id: I7a0f74b93bb31bd0c56fc4c20f42f8ab1fc6de78
Reviewed-on: http://gerrit.cloudera.org:8080/4382
Reviewed-by: Michael Brown <mi...@cloudera.com>
Reviewed-by: Alex Behm <al...@cloudera.com>
Tested-by: Internal Jenkins


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

Branch: refs/heads/master
Commit: 78e129c923b92eebf272ff643711b05b5961b9ea
Parents: 13fc14d
Author: Tim Armstrong <ta...@cloudera.com>
Authored: Mon Sep 12 10:08:14 2016 -0700
Committer: Internal Jenkins <cl...@gerrit.cloudera.org>
Committed: Mon Sep 12 21:15:35 2016 +0000

----------------------------------------------------------------------
 buildall.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/78e129c9/buildall.sh
----------------------------------------------------------------------
diff --git a/buildall.sh b/buildall.sh
index 1845081..a71c521 100755
--- a/buildall.sh
+++ b/buildall.sh
@@ -344,7 +344,7 @@ echo "Creating shell tarball"
 
 if [ "$FORMAT_CLUSTER" -eq 1 ]; then
   "$IMPALA_HOME/testdata/bin/run-all.sh" -format
-elif [ "$TESTDATA_ACTION" -eq 1 ] || [ "$TESTS_ACTION "-eq 1 ]; then
+elif [ "$TESTDATA_ACTION" -eq 1 ] || [ "$TESTS_ACTION" -eq 1 ]; then
   "$IMPALA_HOME/testdata/bin/run-all.sh"
 fi