Aggiornamento staging #1

Merged
Alessio merged 25 commits from main into staging 2026-01-24 17:31:13 +01:00
Showing only changes of commit 7fe8453e7a - Show all commits
+5
View File
@@ -110,6 +110,11 @@ jobs:
echo ===== Moving files to working directory ===== echo ===== Moving files to working directory =====
robocopy repo . /E /MOVE /NFL /NDL /NJH /NJS robocopy repo . /E /MOVE /NFL /NDL /NJH /NJS
REM robocopy exit codes: 0=no copy, 1=ok, 2=extra files, 3=ok+extra, 4+=error
if %ERRORLEVEL% GEQ 8 (
echo Robocopy failed with exit code %ERRORLEVEL%
exit /b 1
)
rmdir repo /S /Q 2>nul rmdir repo /S /Q 2>nul
echo ===== Verifying checkout ===== echo ===== Verifying checkout =====