Skip to content

Commit

Permalink
fixed issue where package_release.sh used HEAD instead of tag
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Pickett committed Jan 10, 2022
1 parent 2d54992 commit 3be6665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

git_branch=$(git rev-parse --abbrev-ref HEAD)
git_branch=$(git symbolic-ref -q --short HEAD || git describe --tags --exact-match)
oses=(
"linux"
"windows"
Expand Down

0 comments on commit 3be6665

Please sign in to comment.