X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fgetver.sh;h=8bb384bd538fbc4a3a249d666cd8dc216e7fb63d;hb=2729ebed04a4bf447ee95116a1ed13feccd7829e;hp=cd9b90a4bd5d232178eab7e8fbb8677e3712471f;hpb=500f4310ea0cb4923fb17cf56971ea85bc4abfdb;p=openwrt.git diff --git a/scripts/getver.sh b/scripts/getver.sh index cd9b90a4bd..8bb384bd53 100755 --- a/scripts/getver.sh +++ b/scripts/getver.sh @@ -18,7 +18,7 @@ try_svn() { try_git() { [ -d .git ] || return 1 - REV="$(git log | grep -m 1 git-svn-id | awk '{ gsub(/.*@/, "", $2); print $2 }')" + REV="$(git log | grep -m 1 git-svn-id | awk '{ gsub(/.*@/, "", $0); print $1 }')" REV="${REV:+r$REV}" [ -n "$REV" ] }