12 lines
216 B
Bash
Raw Permalink Normal View History

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