contrib: remove git describe workaround (#4683)
`git describe` fails if no tag can be found, leading to the whole build script to fail. This is not always desired. To prevent `git describe` from failing in this case the `--always` flag can be passed which causes a short commit hash to be output when a tag is not present.
This commit is contained in:
committed by
ghost43
parent
e9f1888321
commit
6c7bfe613f
@@ -25,7 +25,7 @@ pushd $WINEPREFIX/drive_c/electrum
|
||||
git submodule init
|
||||
git submodule update
|
||||
|
||||
VERSION=`git describe --tags --dirty || printf 'custom'`
|
||||
VERSION=`git describe --tags --dirty --always`
|
||||
echo "Last commit: $VERSION"
|
||||
|
||||
pushd ./contrib/deterministic-build/electrum-locale
|
||||
|
||||
Reference in New Issue
Block a user