projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc9b299
)
add hg support to getver.sh (patch from #5763)
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 28 Aug 2009 12:51:01 +0000
(12:51 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 28 Aug 2009 12:51:01 +0000
(12:51 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17432
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/getver.sh
patch
|
blob
|
history
diff --git
a/scripts/getver.sh
b/scripts/getver.sh
index
5155792
..
19c8c05
100755
(executable)
--- a/
scripts/getver.sh
+++ b/
scripts/getver.sh
@@
-23,5
+23,12
@@
try_git() {
[ -n "$REV" ]
}
-try_version || try_svn || try_git || REV="unknown"
+try_hg() {
+ [ -d .hg ] || return 1
+ REV="$(hg log -r-1 --template '{desc}' | awk '{print $2}' | sed 's/\].*//')"
+ REV="${REV:+$REV}"
+ [ -n "$REV" ]
+}
+
+try_version || try_svn || try_git || try_hg || REV="unknown"
echo "$REV"
This page took
0.021927 seconds
and
4
git commands to generate.