make_svnrev.h.vbs: look for "Last committed at revision [0-9]+" instead of "Updated to revision [0-9]+" for svn

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6066 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2010-08-07 23:18:43 +00:00
parent 521c7558bc
commit 105c05bb7e
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ do while testexec.status = 0 : wscript.sleep 100 : loop
if testexec.exitcode = 0 then
testout = testexec.stdout.readall
set re = new regexp
re.pattern = "Updated to revision [0-9]+"
re.pattern = "Last committed at revision [0-9]+"
cur_rev = split(re.execute(testout)(0))(3)
cur_cms = svn
else