mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
Merge pull request #1473
f1f0109
Fix version string by picking up unannotated tags (stoffu)
This commit is contained in:
commit
b9fcd8f60b
1 changed files with 1 additions and 1 deletions
2
utils.sh
2
utils.sh
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue