From a61c48716c155d51a8e0fb4132756edcea082b39 Mon Sep 17 00:00:00 2001 From: Arthur Golubtsov Date: Tue, 13 Aug 2019 23:36:58 +0300 Subject: [PATCH] builder: Fix wrong if-condition --- builder/image-build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/builder/image-build.sh b/builder/image-build.sh index 37c4a1a..aa4c554 100755 --- a/builder/image-build.sh +++ b/builder/image-build.sh @@ -76,8 +76,7 @@ img-resize ${IMAGE_PATH} max '5G' # Include dotfiles in globs (asterisks) shopt -s dotglob -if [[ -z $TRAVIS_TAG]] -then +if [[ -z ${TRAVIS_TAG} ]]; then echo_stamp "Mount loop-image: ${IMAGE_PATH}" DEV_IMAGE=$(losetup -Pf ${IMAGE_PATH} --show) sleep 0.5