agent start fix

This commit is contained in:
Frank Harris 2026-06-07 17:21:32 -05:00
parent 6a15b114e6
commit f2dbfe5e4e
10 changed files with 110 additions and 62 deletions

View file

@ -12,9 +12,13 @@ if not exist "%INNER_START%" (
echo %INNER_START%
echo.
echo This checkout should contain OGP\Install\agent_start.bat.
pause
call :pause_on_error
exit /b 1
)
call "%INNER_START%"
exit /b %ERRORLEVEL%
:pause_on_error
if /I not "%GSP_AGENT_NO_PAUSE%"=="1" pause
exit /b 0