Merge pull request #13 from KernelGhost/codex/edit-install.bat-to-fix-if-exist-syntax

Fix conditional in OEM install script from `if exists` to `if exist`.
This commit is contained in:
Rohan Barar
2025-08-01 17:04:25 +10:00
committed by GitHub

View File

@@ -2,7 +2,7 @@
reg import %~dp0\RDPApps.reg
if exists %~dp0\Container.reg (
if exist %~dp0\Container.reg (
reg import %~dp0\Container.reg
)