mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-28 22:25:07 +03:00
11 lines
238 B
Bash
11 lines
238 B
Bash
#!/bin/sh
|
|
|
|
case "$*" in
|
|
*--bare*)
|
|
# Remove the "v" prefix
|
|
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]*" --abbrev=7
|
|
;;
|
|
esac
|