16 lines
275 B
Batchfile
16 lines
275 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
cd /d "%~dp0"
|
|
call "%~dp0build_client_agent_v2_installer_windows.bat"
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo Installer build failed. Read the error above.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo Starting installer...
|
|
start "" "%~dp0dist\Inv_web_Client_Setup.exe"
|
|
exit /b 0
|