1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-08 22:26:51 +02:00

Add files via upload

This commit is contained in:
George King
2025-01-04 10:12:52 +01:00
committed by GitHub
parent 9ee7ec2068
commit bf3780e2ec

View File

@ -44,11 +44,11 @@ REM Dynamically locate the UCRT path if not defined
if not defined UCRTFilesPath (
set "UCRTBasePath=!ProgFiles!\Windows Kits\10\Redist"
set "UCRTFilesPath="
for /f "delims=" %%d in ('dir /b /ad /on "!UCRTBasePath!"') do (
if exist "!UCRTBasePath!\%%d\ucrt\DLLs" (
set "UCRTFilesPath=!UCRTBasePath!\%%d\ucrt\DLLs"
)
)
for /f "delims=" %%d in ('dir /b /ad /on "!UCRTBasePath!"') do (
if exist "!UCRTBasePath!\%%d\ucrt\DLLs" (
set "UCRTFilesPath=!UCRTBasePath!\%%d\ucrt\DLLs"
)
)
)
REM Verify Inno Setup is installed