From 470c9b4d7c67514f3650f706a99b6e875fa55dfa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20K=C3=B6cher?= Date: Wed, 11 Nov 2015 14:22:39 +0100 Subject: [PATCH] candi: bugfix, corrected if statement --- candi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/candi.sh b/candi.sh index ad2326c..7705bd2 100755 --- a/candi.sh +++ b/candi.sh @@ -659,7 +659,7 @@ else fi # Source default PACKAGES variables, if none were given so far -if [ ! -z ${PACKAGES} ]; then +if [ ! -z "${PACKAGES}" ]; then DEFAULT_PACKAGES=${PROJECT}/packages/default.packages if [ -e ${DEFAULT_PACKAGES} ]; then source ${DEFAULT_PACKAGES} -- 2.39.5