0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05: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:
Carl Dong 2021-02-26 17:38:35 -05:00
parent d5a71e9785
commit 3e9982ab38

View file

@ -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)"