5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-20 02:32:32 +00:00
yggdrasil-go/contrib/semver/version.sh

12 lines
216 B
Bash
Raw Normal View History

2018-03-05 19:34:23 +00:00
#!/bin/sh
2021-06-06 07:33:11 +00:00
case "$*" in
*--bare*)
2021-06-05 21:28:29 +00:00
# Remove the "v" prefix
git describe --tags --match="v[0-9]*\.[0-9]*\.[0-9]*" | cut -c 2-
2021-06-06 07:33:11 +00:00
;;
*)
2021-06-05 21:28:29 +00:00
git describe --tags --match="v[0-9]*\.[0-9]*\.[0-9]*"
2021-06-06 07:33:11 +00:00
;;
esac