diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-26 14:54:57 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-26 14:54:57 +0000 |
commit | ad6c4198a92d503935a8d2aebd4187540460a992 (patch) | |
tree | bf4d66131f65d0d3c46eb9e369096ad8474b7c36 /scripts/getver.sh | |
parent | f15f6bc76ffd73c934728474335f2312be32960e (diff) | |
download | upstream-ad6c4198a92d503935a8d2aebd4187540460a992.tar.gz upstream-ad6c4198a92d503935a8d2aebd4187540460a992.tar.bz2 upstream-ad6c4198a92d503935a8d2aebd4187540460a992.zip |
getver.sh: cope with varying "git log" line formats to reliably extract the git-svn rev (#10268)
SVN-Revision: 28604
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 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" ] } |