diff options
author | glx <glx@openttd.org> | 2008-09-17 15:04:52 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2008-09-17 15:04:52 +0000 |
commit | 9d3eb490c79ccbaf167253880f6c4f57a710ca28 (patch) | |
tree | c1f6d62aaa5af2931e1de5269bec7d41d4f824b5 /projects | |
parent | 0582039ae01db66552ef9102e830ec2f80c94c08 (diff) | |
download | openttd-9d3eb490c79ccbaf167253880f6c4f57a710ca28.tar.xz |
(svn r14354) -Fix (r14253): also fix hg revision detection for MSVC
Diffstat (limited to 'projects')
-rwxr-xr-x | projects/determineversion.vbs | 2 |
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 |