aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/getver.sh
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2009-09-28 12:26:47 +0000
committerNicolas Thill <nico@openwrt.org>2009-09-28 12:26:47 +0000
commitb36c9d3cec0da6a0e1e3ba5f1fbbdac9de750312 (patch)
tree420558bcc5f4e09ce52771f96a72a661dff805a6 /scripts/getver.sh
parente28fb1d0cccfbebf5b5bc8451e957dcebef264d0 (diff)
downloadmaster-187ad058-b36c9d3cec0da6a0e1e3ba5f1fbbdac9de750312.tar.gz
master-187ad058-b36c9d3cec0da6a0e1e3ba5f1fbbdac9de750312.tar.bz2
master-187ad058-b36c9d3cec0da6a0e1e3ba5f1fbbdac9de750312.zip
[scripts] getver: get svn rev from last commit so that we have consistent revision numbers between git and svn
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17781 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 19c8c05cde..7248ca7753 100755
--- a/scripts/getver.sh
+++ b/scripts/getver.sh
@@ -11,7 +11,7 @@ try_version() {
try_svn() {
[ -d .svn ] || return 1
- REV="$(svn info | awk '/^Revision:/ { print $2 }')"
+ REV="$(svn info -r COMMITTED | awk '/^Revision:/ { print $2 }')"
REV="${REV:+r$REV}"
[ -n "$REV" ]
}