(svn r14128) -Fix: first run of determineversion.vbs in a fresh clean hg checkout always detected the sources as modified

pull/155/head
glx 16 years ago
parent dd1ae8c13f
commit 1703595861

@ -219,7 +219,7 @@ Function DetermineSVNVersion()
If Err.Number = 0 Then
Do
line = OExec.StdOut.ReadLine()
If Mid(line, 1, 1) <> "?" Then
If Len(line) > 0 And Mid(line, 1, 1) <> "?" Then
version = version & "M"
Exit Do
End If

Loading…
Cancel
Save