awl2scl Aufrufskript gebaut.

This commit is contained in:
2026-07-08 14:55:49 +02:00
parent da8dadae22
commit 1d91bd4d7d
2 changed files with 22 additions and 0 deletions
+19
View File
@@ -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
)