Merge branch 'feature/4-tag_to_package_suffix' into develop

This commit is contained in:
Benjamin Bohard 2018-03-21 11:19:38 +01:00
commit f87c18f907
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ tamarin_debug "BUILD TAG IS ${BUILD_TAG}"
if [[ ${BUILD_TAG} == "last" ]]
then
tags=$(git tag master -l "release/*" | tr '_' '-' | sort -rV)
tags=$(git describe --match "release/*" --abbrev=0)
else
tagbranch="build-tag-${BUILD_TAG}"
git checkout -b ${tagbranch}