Files
ProjectStructure_HOME/UnzipSeqArchv.bat

25 lines
476 B
Batchfile
Raw Normal View History

2025-11-06 10:10:29 -07:00
@echo off
setlocal
2025-11-06 11:02:59 -07:00
set "REN_DIR=%~dp0"
for %%I in ("%REN_DIR%..") do set "PROJ_ROOT=%%~fI"
2025-11-06 10:10:29 -07:00
set "PY_SCRIPT=A:\1 Amazon_Active_Projects\3 ProjectStructure\zip_sequences.py"
if not exist "%PY_SCRIPT%" (
echo Missing %PY_SCRIPT%
exit /b 1
)
2025-11-06 11:02:59 -07:00
pushd "%PROJ_ROOT%" >nul 2>&1
2025-11-06 10:10:29 -07:00
python "%PY_SCRIPT%" --mode expand --verbose %*
set "ERR=%ERRORLEVEL%"
if not "%ERR%"=="0" (
echo Failed to expand render sequence archives (exit code %ERR%).
)
popd >nul 2>&1
exit /b %ERR%