Merge branch 'release-candidate' into manager-wizard

This commit is contained in:
Pax1601 2023-12-22 19:23:25 +01:00 committed by GitHub
commit 17a7a1889e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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"
)