summaryrefslogtreecommitdiffstats
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
commit0aeed7e5253b09a38f0873dfcbd21a762449e88d (patch)
tree4e2e0a2fcce84db93be48d14209516b6dcd9bae5 /scripts/getver.sh
parentb17f4b2a26b12ed20f4596e07dd134ed6453b152 (diff)
downloadmaster-31e0f0ae-0aeed7e5253b09a38f0873dfcbd21a762449e88d.tar.gz
master-31e0f0ae-0aeed7e5253b09a38f0873dfcbd21a762449e88d.tar.bz2
master-31e0f0ae-0aeed7e5253b09a38f0873dfcbd21a762449e88d.zip
getver: don't use "-r COMMITTED" arg which needs network access to the repository, use the "Last Changed Rev:" line instead
SVN-Revision: 17864
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" ]
}