20 lines
397 B
Batchfile
20 lines
397 B
Batchfile
@echo off
|
|
setlocal EnableExtensions
|
|
title GSP Windows Agent
|
|
|
|
set "ROOT=%~dp0"
|
|
set "INNER_START=%ROOT%OGP\Install\agent_start.bat"
|
|
|
|
if not exist "%INNER_START%" (
|
|
echo Failure: maintained agent launcher was not found.
|
|
echo.
|
|
echo Expected:
|
|
echo %INNER_START%
|
|
echo.
|
|
echo This checkout should contain OGP\Install\agent_start.bat.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
call "%INNER_START%"
|
|
exit /b %ERRORLEVEL%
|