1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-23 20:30:37 +02:00

[scripts] getver: don't use "-r COMMITTED" arg which needs network access to the repository, use the "Last Changed Rev:" line instead

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17864 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2009-10-05 09:30:53 +00:00
parent 79128e76e6
commit 500f4310ea

View File

@ -11,7 +11,7 @@ try_version() {
try_svn() {
[ -d .svn ] || return 1
REV="$(svn info -r COMMITTED | awk '/^Revision:/ { print $2 }')"
REV="$(svn info | awk '/^Last Changed Rev:/ { print $4 }')"
REV="${REV:+r$REV}"
[ -n "$REV" ]
}