From da0371d0357e74b845304620137c8735beee44dd Mon Sep 17 00:00:00 2001 From: zkld123 Date: Tue, 15 Sep 2015 20:27:42 +0800 Subject: [PATCH] KYLIN-1026 Error message for git check is not correct in package.sh --- script/package.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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" -- 2.3.2 (Apple Git-55)