From f6c8909ac0ffccc0db9ba96ce7439befa3848056 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 8 Mar 2019 14:22:25 -0500 Subject: [PATCH] true string check --- build-ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-ci.sh b/build-ci.sh index a257ac23ef..e24620f0f5 100644 --- a/build-ci.sh +++ b/build-ci.sh @@ -19,7 +19,7 @@ chmod +x ./build.sh ./build.sh ./build.sh tag dev -if [ $PROD_DEPLOY ] +if [ "${PROD_DEPLOY}" == "true" ] then ./build.sh tag beta ./build.sh tag $TAG_NAME @@ -28,7 +28,7 @@ fi docker images ./build.sh push dev -if [ $PROD_DEPLOY ] +if [ "${PROD_DEPLOY}" == "true" ] then ./build.sh push beta ./build.sh push latest