awl2scl Aufrufskript gebaut.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
@echo off
|
||||
REM ================================================================
|
||||
REM Konvertiert .awl Dateien (Kategorie A/B/C) mechanisch in .scl Dateien
|
||||
REM
|
||||
REM ================================================================
|
||||
|
||||
call "%~dp0setenv.bat"
|
||||
|
||||
REM .venv bevorzugen, sonst System-Python
|
||||
set "PYTHON=python"
|
||||
if exist "%PROJECT%\.venv\Scripts\python.exe" (
|
||||
set "PYTHON=%PROJECT%\.venv\Scripts\python.exe"
|
||||
)
|
||||
|
||||
"%PYTHON%" "%PV_LIB%\awl2scl.py" %*
|
||||
if errorlevel 1 (
|
||||
echo FEHLER: awl2scl.py wurde mit Fehler beendet.
|
||||
exit /b 1
|
||||
)
|
||||
Reference in New Issue
Block a user