mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-23 03:15:58 -04:00
make windows installer use x64 vc_redist
This commit is contained in:
parent
7c5a83d3d1
commit
6793fbd773
2 changed files with 5 additions and 5 deletions
installer/windows
|
@ -1,4 +1,4 @@
|
|||
if(Test-path VC_redist.x86.exe -PathType leaf) {
|
||||
if(Test-path VC_redist.x64.exe -PathType leaf) {
|
||||
Return
|
||||
}
|
||||
Invoke-WebRequest -useb https://aka.ms/vs/17/release/vc_redist.x86.exe -outfile VC_redist.x86.exe
|
||||
Invoke-WebRequest -useb https://aka.ms/vs/17/release/vc_redist.x64.exe -outfile VC_redist.x64.exe
|
|
@ -475,9 +475,9 @@ SectionGroupEnd
|
|||
!execute "pwsh -nol -noni -nop dl-vcr.ps1"
|
||||
Section "Visual Studio Runtime"
|
||||
SetOutPath $INSTDIR
|
||||
File VC_redist.x86.exe
|
||||
ExecWait "$INSTDIR\VC_redist.x86.exe /install /quiet /norestart"
|
||||
Delete "$INSTDIR\VC_redist.x86.exe"
|
||||
File VC_redist.x64.exe
|
||||
ExecWait "$INSTDIR\VC_redist.x64.exe /install /quiet /norestart"
|
||||
Delete "$INSTDIR\VC_redist.x64.exe"
|
||||
SectionEnd
|
||||
|
||||
Section "steam_appid.txt"
|
||||
|
|
Loading…
Reference in a new issue