10 lines
270 B
Batchfile
10 lines
270 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_BIN%\01_get_rd_dbase.bat
|
|
CALL %CREMIG%\.venv\Scripts\activate.bat
|
|
python %CREMIG_LIB%\compare_lists.py -n %id% -t
|
|
goto start
|