Skip to content

Commit 74b8658

Browse files
authored
chore: remove verbose curl from Get-WindowsAppSdk.ps1 (#116)
1 parent 0b27367 commit 74b8658

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/Get-WindowsAppSdk.ps1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ function Download-File([string] $url, [string] $outputPath, [string] $etagFile)
1010
# We use `curl.exe` here because `Invoke-WebRequest` is notoriously slow.
1111
& curl.exe `
1212
--progress-bar `
13-
-v `
1413
--show-error `
1514
--fail `
1615
--location `
@@ -31,4 +30,4 @@ $windowsAppSdkFullVersion = "1.6.250228001"
3130
$windowsAppSdkPath = Join-Path $PSScriptRoot "files\windows-app-sdk-$($arch).exe"
3231
$windowsAppSdkUri = "https://aka.ms/windowsappsdk/$($windowsAppSdkMajorVersion)/$($windowsAppSdkFullVersion)/windowsappruntimeinstall-$($arch).exe"
3332
$windowsAppSdkEtagFile = $windowsAppSdkPath + ".etag"
34-
Download-File $windowsAppSdkUri $windowsAppSdkPath $windowsAppSdkEtagFile
33+
Download-File $windowsAppSdkUri $windowsAppSdkPath $windowsAppSdkEtagFile

0 commit comments

Comments
 (0)