From: Jonas Gorski Date: Sat, 4 Jun 2016 16:35:21 +0000 (+0200) Subject: scripts/getver.sh: simplify revision calculation X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fyousong.git;a=commitdiff_plain;h=575be9d18259560b40039ee0e4bf6d6ce109fca6 scripts/getver.sh: simplify revision calculation Use git rev-list --count to get the revision number. Signed-off-by: Jonas Gorski --- diff --git a/scripts/getver.sh b/scripts/getver.sh index d0916713ad..340ed6862c 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 --match reboot | sed "s/reboot-\([0-9]*\)-.*/\1/g")" + REV="$(git rev-list reboot..HEAD --count)" REV="${REV:+r$REV}" [ -n "$REV" ] }