From d2c1ad831c052d5c0fcb95d644889d70a389eb7d Mon Sep 17 00:00:00 2001 From: stoffu Date: Thu, 21 Jun 2018 20:24:55 +0900 Subject: [PATCH] Fix version string by picking up unannotated tags /monero-gui#1473 --- utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.sh b/utils.sh index fcaaa69d84..76938d995b 100755 --- a/utils.sh +++ b/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"