Files
SSG-Ruledesigner-Konfigurator/SVGs/Omniflo/lib/TEFBogen/run_TEFBogen.bat
T
2025-09-23 10:26:59 +02:00

17 lines
533 B
Batchfile

@echo off
set TEFBogen_PATH=%~dp0
set PROPS_PATH=C:\Program Files\RuleDesigner\RDConfigurator Fusion\WebApi\Editor2D\SSG\shapes\props
set JSON_PATH_TEFBOGEN=%TEFBogen_PATH%JSON
python 01_props_step1_process_TEFBogen_json.py
python 01_props_step2_update_props_TEF_Boegen_from_json.py
:: Check if Python script succeeded
if %ERRORLEVEL% equ 0 (
echo update dimensions and connection points in props completed successfully
) else (
echo update dimensions and connection points in props failed with error %ERRORLEVEL%
)
pause