From b144605e3e6004e9536e430011af82c4397b33b9 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 8 Mar 2019 14:47:56 -0500 Subject: [PATCH] APPVEYOR_RE_BUILD is True --- build-ci.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-ci.sh b/build-ci.sh index e24620f0f..d07d770ea 100644 --- a/build-ci.sh +++ b/build-ci.sh @@ -6,12 +6,15 @@ echo "Rebuild: ${APPVEYOR_RE_BUILD}" PROD_DEPLOY=false TAG_NAME="" -if [ "${APPVEYOR_REPO_TAG_NAME}" != "" -a "${APPVEYOR_RE_BUILD}" == "true" ] +if [ "${APPVEYOR_REPO_TAG_NAME}" != "" -a "${APPVEYOR_RE_BUILD}" == "True" ] then PROD_DEPLOY=true TAG_NAME=${APPVEYOR_REPO_TAG_NAME#"v"} fi +echo "Prod deploy: ${PROD_DEPLOY}" +echo "Tag name: ${TAG_NAME}" + chmod +x ./build.sh #dotnet build --configuration Debug