(svn r14353) -Fix: hg revision detection always gave the tip revision, not the current working revision.
authorpeter1138
Wed, 17 Sep 2008 08:32:26 +0000
changeset 10162 4a256abc0087
parent 10161 1343bc8e2c57
child 10163 236f4cd3aeca
(svn r14353) -Fix: hg revision detection always gave the tip revision, not the current working revision.
findversion.sh
--- a/findversion.sh	Wed Sep 17 02:30:24 2008 +0000
+++ b/findversion.sh	Wed Sep 17 08:32:26 2008 +0000
@@ -91,7 +91,7 @@
 	if [ -n "`hg status \"$SRC_DIR\" | grep -v '^?'`" ]; then
 		MODIFIED="2"
 	fi
-	HASH=`LC_ALL=C hg tip 2>/dev/null | head -n 1 | cut -d: -f3 | cut -c1-8`
+	HASH=`LC_ALL=C hg parents 2>/dev/null | head -n 1 | cut -d: -f3 | cut -c1-8`
 	REV="h$HASH"
 	BRANCH=`hg branch | sed 's/^default$//'`
 	REV_NR=`LC_ALL=C hg log -k "svn" -l 1 --template "{desc}\n" "$SRC_DIR" | grep "^(svn r[0-9]*)" | head -n 1 | sed "s/.*(svn r\([0-9]*\)).*/\1/"`