mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Only considered annotated/signed tags for version
This works around confusion with the 'continuous' tag that we now use for the CI AppImage builds. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
d09d12efc7
commit
087900b643
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ os=$1
|
|||
if [ $# -eq 2 ] && [ "$2" ]; then
|
||||
v0=$2
|
||||
else
|
||||
cmd="git describe --tags --abbrev=12"
|
||||
cmd="git describe --abbrev=12"
|
||||
v0=$($cmd) || v0=$(cat .gitversion) || croak "odd; command '$cmd' failed"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue