Skip to content

Commit

Permalink
Merge pull request #3949 from Roasbeef/fix-release-script-tags
Browse files Browse the repository at this point in the history
build/release: update release script to handle multiple tags at head
  • Loading branch information
Roasbeef committed Jan 22, 2020
2 parents a2977c4 + 8b086bb commit f8418ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/release/release.sh
Expand Up @@ -18,7 +18,7 @@ else
TAG=$1

# If a tag is specified, ensure that that tag is present and checked out.
if [[ $TAG != $(git tag -l --points-at HEAD) ]]; then
if [[ $TAG != $(git describe) ]]; then
echo "tag $TAG not checked out"
exit 1
fi
Expand Down

0 comments on commit f8418ab

Please sign in to comment.