From: Nicolas Thill Date: Mon, 5 Oct 2009 09:30:53 +0000 (+0000) Subject: getver: don't use "-r COMMITTED" arg which needs network access to the repository... X-Git-Tag: 8.09.2~22 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=486dc200a7cf8408c0e43e9591de73ec77bb2264;p=openwrt%2Fsvn-archive%2Fopenwrt.git getver: don't use "-r COMMITTED" arg which needs network access to the repository, use the "Last Changed Rev:" line instead SVN-Revision: 17864 --- diff --git a/scripts/getver.sh b/scripts/getver.sh index c97bfb5042..c018d82941 100755 --- a/scripts/getver.sh +++ b/scripts/getver.sh @@ -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" ] }