aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/getver.sh
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2009-10-05 09:30:53 +0000
committerNicolas Thill <nico@openwrt.org>2009-10-05 09:30:53 +0000
commit3b3361a35d9e349613db53ba1e1ccbafb340c97b (patch)
tree33d1eec14de2450486dd1776694ca72bb45a8d69 /scripts/getver.sh
parentaf824bda50ad0cfb42b2a2481b3380f4edf5e105 (diff)
downloadmaster-187ad058-3b3361a35d9e349613db53ba1e1ccbafb340c97b.tar.gz
master-187ad058-3b3361a35d9e349613db53ba1e1ccbafb340c97b.tar.bz2
master-187ad058-3b3361a35d9e349613db53ba1e1ccbafb340c97b.zip
[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
Diffstat (limited to 'scripts/getver.sh')
-rwxr-xr-xscripts/getver.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/getver.sh b/scripts/getver.sh
index 7248ca7753..cd9b90a4bd 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" ]
}