Skip to content

Commit a854eb7

Browse files
committed
Fix Install-VcRedist warning
1 parent 70f5f91 commit a854eb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UDKTests/install_vcredist.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ New-Item "C:\Temp\" -ItemType Directory -ErrorAction SilentlyContinue
55
Install-Module -Name VcRedist -Force
66
New-Item -Path C:\Temp\VcRedist -ItemType Directory -Force
77
$VcList = Get-VcList -Export Unsupported | Where-Object { $_.Release -eq "2012" }
8-
Save-VcRedist -VcList $VcList -Path C:\Temp\VcRedist
9-
Install-VcRedist -Path C:\Temp\VcRedist -VcList $VcList -Silent
8+
$VcList = Save-VcRedist -VcList $VcList -Path C:\Temp\VcRedist
9+
Install-VcRedist -VcList $VcList -Silent
1010

1111
Exit $LASTEXITCODE

0 commit comments

Comments
 (0)