mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 19:44:05 +02:00
[scripts] getver.sh: cope with varying "git log" line formats to reliably extract the git-svn rev (#10268)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28604 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
4126b8d697
commit
3c2fe43ac7
@ -18,7 +18,7 @@ try_svn() {
|
|||||||
|
|
||||||
try_git() {
|
try_git() {
|
||||||
[ -d .git ] || return 1
|
[ -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}"
|
REV="${REV:+r$REV}"
|
||||||
[ -n "$REV" ]
|
[ -n "$REV" ]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user