DCSOlympus/frontend/check_setup.bat
2024-02-19 16:45:55 +01:00

10 lines
227 B
Batchfile

@echo off
echo check_setup starting...
if exist "setup" (
echo setup.bat has already been called, skipping...
) else (
echo setup.bat has not been called yet, installing!
call .\setup.bat
)
echo check_setup completed!