the-mist-ruins-and-the-lone.../GameUpdate.bat
2025-01-30 19:53:49 -06:00

14 lines
No EOL
193 B
Batchfile

@echo off
setlocal
REM Copy GAMEUPDATE.bat to a new file
copy patch.bat patch2.bat
REM Run the new file
call patch2.bat
REM Delete the new file
del patch2.bat
endlocal
@echo on