From d750060f0c39db4b88f14aa413fc1f81706a4373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Fri, 9 Aug 2013 16:47:07 -0700 Subject: [PATCH] add "|| true" otherwise "set -e" kills us if the repo is clean --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 8365b7bc2a..9a6986bb07 100755 --- a/make.sh +++ b/make.sh @@ -13,7 +13,7 @@ set -x VERSION=`cat ./VERSION` GIT_COMMIT=$(git rev-parse --short HEAD) -GIT_CHANGES=$(test -n "`git status --porcelain`" && echo "+CHANGES") +GIT_CHANGES=$(test -n "`git status --porcelain`" && echo "+CHANGES" || true) # "bundles" indicate the different types of build artifacts: static binary, ubuntu package, etc.