From 88e4e3eb7e488e59331a0aefa390d9ef28115b78 Mon Sep 17 00:00:00 2001 From: divious1 Date: Wed, 29 May 2019 20:27:15 -0400 Subject: [PATCH] updated config version --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 158f461703..dcfcd022bf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -86,7 +86,10 @@ jobs: - run: name: update version and build number command: | - echo "Tags: $CIRCLE_TAG" + if [ -z "${CIRCLE_TAG}" ]; then + echo "CIRCLE_TAGVAR is unset or set to the empty string" + else + echo "CIRCLE_TAG is set to: $CIRCLE_TAG" cd security-content # update build number sed -i "s/build = .*$/build = $CIRCLE_BUILD_NUM/g" package/default/app.conf