summaryrefslogtreecommitdiff
path: root/projects/determineversion.vbs
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2008-09-17 15:04:52 +0000
committerglx <glx@openttd.org>2008-09-17 15:04:52 +0000
commit9d3eb490c79ccbaf167253880f6c4f57a710ca28 (patch)
treec1f6d62aaa5af2931e1de5269bec7d41d4f824b5 /projects/determineversion.vbs
parent0582039ae01db66552ef9102e830ec2f80c94c08 (diff)
downloadopenttd-9d3eb490c79ccbaf167253880f6c4f57a710ca28.tar.xz
(svn r14354) -Fix (r14253): also fix hg revision detection for MSVC
Diffstat (limited to 'projects/determineversion.vbs')
-rwxr-xr-xprojects/determineversion.vbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/determineversion.vbs b/projects/determineversion.vbs
index 42efd6054..330a53f6b 100755
--- a/projects/determineversion.vbs
+++ b/projects/determineversion.vbs
@@ -217,7 +217,7 @@ Function DetermineSVNVersion()
If version = "norev000" Then
' git detection failed, reset error and try mercurial (hg)
Err.Clear
- Set oExec = WshShell.Exec("hg tip")
+ Set oExec = WshShell.Exec("hg parents")
If Err.Number = 0 Then
' Wait till the application is finished ...
Do While oExec.Status = 0