From: Jo-Philipp Wich Date: Wed, 26 Oct 2011 14:54:57 +0000 (+0000) Subject: [scripts] getver.sh: cope with varying "git log" line formats to reliably extract... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=b09739cf84a44c89787b0048abcfc1f717102894 [scripts] getver.sh: cope with varying "git log" line formats to reliably extract the git-svn rev (#10268) SVN-Revision: 28604 --- 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" ] }