5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-10 05:10:26 +00:00
yggdrasil-go/contrib/semver/version.sh

9 lines
205 B
Bash
Raw Normal View History

2018-03-05 19:34:23 +00:00
#!/bin/sh
2021-06-05 21:38:37 +00:00
if [[ $* == *--bare* ]]; then
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-05 21:09:15 +00:00
else
2021-06-05 21:28:29 +00:00
git describe --tags --match="v[0-9]*\.[0-9]*\.[0-9]*"
2021-06-05 21:09:15 +00:00
fi