1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-05-12 12:00:14 +00:00

Finally got expand working right

This now figures out which files to extract from the cab file from the architecture in the registry
This commit is contained in:
brickviking 2022-08-26 01:36:02 +12:00
parent 75936e17b6
commit 1205b2abf0

View file

@ -16,8 +16,12 @@ if %ERRORLEVEL == 9009 (
mkdir internal\curl >NUL
echo Fetching %LINK%
explorer %LINK%
rem we should wait until the file is downloaded, because explorer returns straight away
"%SystemRoot%\system32\expand.exe" "%USERPROFILE%\Desktop\%CURLVERSION%" /F:* internal\curl
rem grab the arch. We'll need this to extract files.
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set ARCH=i386|| set ARCH=amd64
rem we should wait until the file is downloaded, because explorer returns straight away
"%SystemRoot%\system32\expand.exe" "%USERPROFILE%\Desktop\%CURLVERSION%" /F:%ARCH%\* internal\curl
rem Add to path
PATH=%PATH%;%~dp0\internal\curl