mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
10 lines
227 B
Batchfile
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! |