mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-31 10:41:08 +00:00
contrib: Silence git-describe when looking for tag
Otherwise, it prints a rather disturbing message to stderr:
fatal: no tag exactly matches '<hash>'
This commit is contained in:
parent
d5a71e9785
commit
3e9982ab38
@ -4,7 +4,7 @@
|
||||
#
|
||||
# A helper script to be sourced into the gitian descriptors
|
||||
|
||||
if RECENT_TAG="$(git describe --exact-match HEAD)"; then
|
||||
if RECENT_TAG="$(git describe --exact-match HEAD 2> /dev/null)"; then
|
||||
VERSION="${RECENT_TAG#v}"
|
||||
else
|
||||
VERSION="$(git rev-parse --short=12 HEAD)"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user