don't wait for shell.run to finish

git-svn-id: file:///home/svn/framework3/trunk@8718 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Joshua Drake 2010-03-04 22:33:16 +00:00
parent 8a2382ed1a
commit d370ab62c6
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ echo Set ofs = CreateObject("Scripting.FileSystemObject").OpenTextFile("DECODED"
echo ofs.WriteLine data >>decode_stub
echo ofs.close >>decode_stub
echo Set shell = CreateObject("Wscript.Shell") >>decode_stub
echo shell.run "DECODED", 0, true >>decode_stub
echo shell.run "DECODED", 0, false >>decode_stub
echo Else >>decode_stub
echo Wscript.Echo "The file is empty." >>decode_stub
echo End If >>decode_stub