Skip to content
Snippets Groups Projects
Commit 797fb8a3 authored by John Crispin's avatar John Crispin
Browse files

scripts: add "r" to revision


343c3be4 accidentially removed the "r"

Signed-off-by: default avatarJohn Crispin <john@phrozen.org>
parent c9e3cd79
No related branches found
No related tags found
No related merge requests found
...@@ -12,13 +12,14 @@ try_version() { ...@@ -12,13 +12,14 @@ try_version() {
try_git() { try_git() {
git rev-parse --git-dir >/dev/null 2>&1 || return 1 git rev-parse --git-dir >/dev/null 2>&1 || return 1
REV="$(git describe --match reboot | sed "s/reboot-\([0-9]*\)-.*/\1/g")" REV="$(git describe --match reboot | sed "s/reboot-\([0-9]*\)-.*/\1/g")"
REV="${REV:+r$REV}"
[ -n "$REV" ] [ -n "$REV" ]
} }
try_hg() { try_hg() {
[ -d .hg ] || return 1 [ -d .hg ] || return 1
REV="$(hg log -r-1 --template '{desc}' | awk '{print $2}' | sed 's/\].*//')" REV="$(hg log -r-1 --template '{desc}' | awk '{print $2}' | sed 's/\].*//')"
REV="${REV:+$REV}" REV="${REV:+r$REV}"
[ -n "$REV" ] [ -n "$REV" ]
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment