Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from cloudfoundry-incubator/add-commit-hashes
Browse files Browse the repository at this point in the history
Fix generate-tag-files
  • Loading branch information
Irfan Habib committed Aug 20, 2018
2 parents 88ae311 + 83a3173 commit 2c6d852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/ci/tasks/dev-releases/generate-tag-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ run:
LATEST_TAG=$(cat package.json | grep version | grep -Po "([0-9\.]?)*")-$(git log -1 --format="%h")
if [ ! -z ${TAG_SUFFIX} ]; then
if [ ${TAG_SUFFIX} != "null" ];
if [ "${TAG_SUFFIX}" != "null" ]; then
LATEST_TAG=${LATEST_TAG}-${TAG_SUFFIX}
fi
fi
Expand Down

0 comments on commit 2c6d852

Please sign in to comment.