Merge branch 'manager-wizard' of https://github.com/Pax1601/DCSOlympus into manager-wizard

This commit is contained in:
Pax1601
2023-12-22 21:26:17 +01:00

View File

@@ -1,2 +1,9 @@
@echo OFF
powershell ".\scripts\install.bat | tee output.log"
WHERE /q powershell
if %ERRORLEVEL% NEQ 0 (
.\scripts\install.bat
) else (
powershell ".\scripts\install.bat | tee output.log"
)