configure.bat 182 B

12345678910111213
  1. @echo OFF
  2. setlocal enabledelayedexpansion
  3. set "FullScriptPath=%~dp0"
  4. python %FullScriptPath%configure.py %*
  5. if %errorlevel% neq 0 goto error
  6. exit /b
  7. :error
  8. echo FAILED
  9. exit /b 1