diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-09-28 12:26:47 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-09-28 12:26:47 +0000 |
commit | 21e17d6ad463edff7baf6e25a30041dcf22a8c4e (patch) | |
tree | 420558bcc5f4e09ce52771f96a72a661dff805a6 | |
parent | 9f19c5e029bb385cb7dca43c8f94d70231994275 (diff) |
[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
-rwxr-xr-x | scripts/getver.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/getver.sh b/scripts/getver.sh index 19c8c05cd..7248ca775 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" ] } |