Files
ForgeFlow/PUBLISH-AND-ENABLE-UPDATE.cmd
T
2026-07-28 00:03:33 +02:00

16 lines
484 B
Batchfile

@echo off
setlocal
cd /d "%~dp0"
echo ForgeFlow source and binary release publisher
echo.
powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File "%~dp0Publish-ForgeFlow-Release.ps1"
set "forgeflowExitCode=%ERRORLEVEL%"
echo.
if not "%forgeflowExitCode%"=="0" (
echo Publication failed. The existing ForgeFlow installation was not modified.
) else (
echo Publication completed. The older ForgeFlow updater can now install this release.
)
pause
exit /b %forgeflowExitCode%