9 lines
232 B
Batchfile
9 lines
232 B
Batchfile
@echo off
|
|
:start
|
|
call cremig_setenv.bat
|
|
set /p "id=Baugruppennummer: "
|
|
IF NOT EXIST %CREMIG%\.venv CALL %CREMIG_BIN%\install_py.bat
|
|
CALL %CREMIG%\.venv\Scripts\activate.bat
|
|
python %CREMIG_LIB%\compare_lists.py -n %id% -t
|
|
goto start
|