mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
build: if there's no recent git tag, don't spew error messages
This commit is contained in:
parent
16341cc15c
commit
c1149f7371
@ -22,7 +22,7 @@ if [ -e "$(which git 2>/dev/null)" -a "$(git rev-parse --is-inside-work-tree 2>/
|
|||||||
|
|
||||||
# if latest commit is tagged and not dirty, then override using the tag name
|
# if latest commit is tagged and not dirty, then override using the tag name
|
||||||
RAWDESC=$(git describe --abbrev=0 2>/dev/null)
|
RAWDESC=$(git describe --abbrev=0 2>/dev/null)
|
||||||
if [ "$(git rev-parse HEAD)" = "$(git rev-list -1 $RAWDESC)" ]; then
|
if [ "$(git rev-parse HEAD)" = "$(git rev-list -1 $RAWDESC 2>/dev/null)" ]; then
|
||||||
git diff-index --quiet HEAD -- && DESC=$RAWDESC
|
git diff-index --quiet HEAD -- && DESC=$RAWDESC
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user