mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-01 09:57:46 +00:00
15 lines
287 B
Bash
15 lines
287 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
git_root() {
|
||
|
git rev-parse --show-toplevel 2> /dev/null
|
||
|
}
|
||
|
|
||
|
git_head_version() {
|
||
|
local recent_tag
|
||
|
if recent_tag="$(git describe --exact-match HEAD 2> /dev/null)"; then
|
||
|
echo "${recent_tag#v}"
|
||
|
else
|
||
|
git rev-parse --short=12 HEAD
|
||
|
fi
|
||
|
}
|