You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ma...@apache.org on 2015/09/15 14:36:30 UTC

incubator-kylin git commit: KYLIN-1026 Error message for git check is not correct in package.sh

Repository: incubator-kylin
Updated Branches:
  refs/heads/1.x-staging f929892dc -> b00392146


KYLIN-1026 Error message for git check is not correct in package.sh

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


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

Branch: refs/heads/1.x-staging
Commit: b003921468318b84b9c5ad3ef131877c728225df
Parents: f929892
Author: zkld123 <zk...@sjtu.edu.cn>
Authored: Tue Sep 15 20:27:42 2015 +0800
Committer: honma <ho...@ebay.com>
Committed: Tue Sep 15 20:38:57 2015 +0800

----------------------------------------------------------------------
 script/package.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/b0039214/script/package.sh
----------------------------------------------------------------------
diff --git a/script/package.sh b/script/package.sh
index 759c082..820dce2 100755
--- a/script/package.sh
+++ b/script/package.sh
@@ -26,9 +26,11 @@ else
     echo "maven check passed"
 fi
 
+echo "Checking git..."
+
 if [ -z "$(command -v git)" ]
 then
-    echo "Please install maven first so that Kylin packaging can proceed"
+    echo "Please install git first so that Kylin packaging can proceed"
     exit 1
 else
     echo "git check passed"