zipseq finalized

This commit is contained in:
Nathan
2025-11-06 11:02:59 -07:00
parent ce9f8da4b9
commit da70801c87
4 changed files with 232 additions and 8 deletions

View File

@@ -1,17 +1,17 @@
@echo off
setlocal
set "REPO_ROOT=%~dp0"
set "REN_DIR=%~dp0"
for %%I in ("%REN_DIR%..") do set "PROJ_ROOT=%%~fI"
set "PY_SCRIPT=A:\1 Amazon_Active_Projects\3 ProjectStructure\zip_sequences.py"
pushd "%REPO_ROOT%" >nul 2>&1
if not exist "%PY_SCRIPT%" (
echo Missing %PY_SCRIPT%
popd >nul 2>&1
exit /b 1
)
pushd "%PROJ_ROOT%" >nul 2>&1
python "%PY_SCRIPT%" --mode expand --verbose %*
set "ERR=%ERRORLEVEL%"