make: use --tags to describe commit

This commit is contained in:
Oliver Gugger 2020-12-21 13:03:14 +01:00
parent ae4a1908dd
commit 330f3c4dd0
No known key found for this signature in database
GPG Key ID: 8E4256593F177720
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ IOS_BUILD := $(IOS_BUILD_DIR)/Lndmobile.framework
ANDROID_BUILD_DIR := $(MOBILE_BUILD_DIR)/android
ANDROID_BUILD := $(ANDROID_BUILD_DIR)/Lndmobile.aar
COMMIT := $(shell git describe --abbrev=40 --dirty)
COMMIT := $(shell git describe --tags --dirty)
COMMIT_HASH := $(shell git rev-parse HEAD)
BTCD_COMMIT := $(shell cat go.mod | \

View File

@ -37,7 +37,7 @@ function check_tag_correct() {
fi
# If a tag is specified, ensure that that tag is present and checked out.
if [[ $tag != $(git describe) ]]; then
if [[ $tag != $(git describe --tags) ]]; then
red "tag $tag not checked out"
exit 1
fi