Merge branch 'develop' of github.com:RiV-chain/RiV-mesh into develop

This commit is contained in:
Mihail Slobodyanuk 2022-12-12 11:00:28 +02:00
commit 8cace274d0
2 changed files with 4 additions and 2 deletions

View file

@ -3,9 +3,9 @@
case "$*" in
*--bare*)
# Remove the "v" prefix
git describe --tags --match="v[0-9]*\.[0-9]*\.[0-9]*" | cut -c 2-
git describe --tags --match="v[0-9]*\.[0-9]*\.[0-9]*" --abbrev=7 | cut -c 2-
;;
*)
git describe --tags --match="v[0-9]*\.[0-9]*\.[0-9]*"
git describe --tags --match="v[0-9]*\.[0-9]*\.[0-9]*" --abbrev=7
;;
esac