runvt.bat 307 B

123456789101112131415161718192021222324252627282930
  1. if "%1"=="" goto Usage
  2. if exist VTSignal.txt del VTSignal.txt
  3. if exist VTError.txt del VTError.txt
  4. call mtrun %1 /C "/GO"
  5. :Loop
  6. sleep 300
  7. if exist VTSignal.txt goto End
  8. if exist VTError.txt goto Error
  9. goto Loop
  10. :Error
  11. set BUILDERROR=1
  12. :Usage
  13. echo Usage: runvt.bat [VT PCD file]
  14. goto End
  15. :End