7z seq compression working

This commit is contained in:
Nathan
2025-11-10 11:27:44 -07:00
parent 83b5e62266
commit a506c09a49
5 changed files with 13933 additions and 100 deletions

View File

@@ -1,5 +1,5 @@
@echo off
setlocal EnableExtensions
setlocal EnableExtensions EnableDelayedExpansion
set "REN_DIR=%~dp0"
for %%I in ("%REN_DIR%..") do set "PROJ_ROOT=%%~fI"
@@ -31,12 +31,12 @@ if not defined PY_SCRIPT (
pushd "%PROJ_ROOT%" >nul 2>&1
python "%PY_SCRIPT%" --verbose %*
set "ERR=%ERRORLEVEL%"
set "ERR=!ERRORLEVEL!"
if not "%ERR%"=="0" (
echo Failed to update render sequence archives (exit code %ERR%).
if not "!ERR!"=="0" (
echo Failed to update render sequence archives (exit code !ERR!).
)
popd >nul 2>&1
exit /b %ERR%
exit /b !ERR!