diff options
Diffstat (limited to 'scripts/getver.sh')
-rwxr-xr-x | scripts/getver.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/getver.sh b/scripts/getver.sh index d3b68c8634..60adc42e92 100755 --- a/scripts/getver.sh +++ b/scripts/getver.sh @@ -11,7 +11,7 @@ try_version() { try_git() { git rev-parse --git-dir >/dev/null 2>&1 || return 1 - REV="$(git describe | sed "s/reboot-\([0-9]*\)-.*/\1/g")" + REV="$(git describe --match reboot | sed "s/reboot-\([0-9]*\)-.*/\1/g")" [ -n "$REV" ] } |