backup: WIP Windows avant repart propre (GUI core installer splash spec)
This commit is contained in:
28
build_windows_installer_oneclick.bat
Normal file
28
build_windows_installer_oneclick.bat
Normal file
@@ -0,0 +1,28 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
set "SCRIPT_DIR=%~dp0"
|
||||
set "PS_SCRIPT=%SCRIPT_DIR%scripts\build_windows_oneclick.ps1"
|
||||
|
||||
if not exist "%PS_SCRIPT%" (
|
||||
echo Script PowerShell introuvable : %PS_SCRIPT%
|
||||
pause
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
echo Lancement du build Windows avec installateur...
|
||||
powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -File "%PS_SCRIPT%"
|
||||
set "EXITCODE=%ERRORLEVEL%"
|
||||
|
||||
if not "%EXITCODE%"=="0" (
|
||||
echo.
|
||||
echo Le build installateur a echoue. Code retour : %EXITCODE%
|
||||
pause
|
||||
exit /b %EXITCODE%
|
||||
)
|
||||
|
||||
echo.
|
||||
echo Build installateur termine avec succes.
|
||||
echo Sortie attendue : release\Anonymisation-Setup.exe
|
||||
pause
|
||||
exit /b 0
|
||||
Reference in New Issue
Block a user