Skip to content

Commit

Permalink
Fix version string by picking up unannotated tags /monero-gui#1473
Browse files Browse the repository at this point in the history
  • Loading branch information
stoffu committed Jun 21, 2018
1 parent cec5e38 commit d2c1ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function get_tag()
VERSIONTAG="$COMMIT"
fi
# save tag name + commit if availible
TAGNAME=$(git describe | sed -e 's/[\t ]*//')
TAGNAME=$(git describe --tags | sed -e 's/[\t ]*//')
if test -z "$TAGNAME"
then
TAGNAME="$VERSIONTAG"
Expand Down

0 comments on commit d2c1ad8

Please sign in to comment.