Files
SSG-Ruledesigner-Konfigurator/cleanLocalShapes.bat
T

28 lines
803 B
Batchfile

if exist "%~dp0_setenv.bat" (
REM echo Lade lokale Umgebungseinstellungen aus _setenv.bat...
call "%~dp0_setenv.bat"
)
if not defined RDCONFIGURATOR_INSTALL_DIR (
echo Error RDCONFIGURATOR_INSTALL_DIR not defined
) else (
del %RDCONFIGURATOR_INSTALL_DIR%\props\shape_*.txt
del %RDCONFIGURATOR_INSTALL_DIR%\props\Copy_*.txt
del %RDCONFIGURATOR_INSTALL_DIR%\svg\shape_*.xml
del %RDCONFIGURATOR_INSTALL_DIR%\svg\Copy_*.xml
del %RDCONFIGURATOR_INSTALL_DIR%\obj\shape_*.stl
)
if not defined RDCONFIGURATOR_GIT_DIR (
echo Error not defined
) else (
del %RDCONFIGURATOR_GIT_DIR%\props\shape_*.txt
del %RDCONFIGURATOR_GIT_DIR%\props\Copy_*.txt
del %RDCONFIGURATOR_GIT_DIR%\svg\shape_*.xml
del %RDCONFIGURATOR_GIT_DIR%\svg\Copy_*.xml
del %RDCONFIGURATOR_GIT_DIR%\obj\shape_*.stl
)
pause