From f773a9e6b92daa147b8eb1c4ab21bcc88524529d Mon Sep 17 00:00:00 2001 From: Dean Sheather Date: Tue, 3 Jun 2025 18:21:46 +1000 Subject: [PATCH] chore: remove verbose curl from Get-WindowsAppSdk.ps1 --- scripts/Get-WindowsAppSdk.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/Get-WindowsAppSdk.ps1 b/scripts/Get-WindowsAppSdk.ps1 index a9ca02a..655d043 100644 --- a/scripts/Get-WindowsAppSdk.ps1 +++ b/scripts/Get-WindowsAppSdk.ps1 @@ -10,7 +10,6 @@ function Download-File([string] $url, [string] $outputPath, [string] $etagFile) # We use `curl.exe` here because `Invoke-WebRequest` is notoriously slow. & curl.exe ` --progress-bar ` - -v ` --show-error ` --fail ` --location ` @@ -31,4 +30,4 @@ $windowsAppSdkFullVersion = "1.6.250228001" $windowsAppSdkPath = Join-Path $PSScriptRoot "files\windows-app-sdk-$($arch).exe" $windowsAppSdkUri = "https://aka.ms/windowsappsdk/$($windowsAppSdkMajorVersion)/$($windowsAppSdkFullVersion)/windowsappruntimeinstall-$($arch).exe" $windowsAppSdkEtagFile = $windowsAppSdkPath + ".etag" -Download-File $windowsAppSdkUri $windowsAppSdkPath $windowsAppSdkEtagFile \ No newline at end of file +Download-File $windowsAppSdkUri $windowsAppSdkPath $windowsAppSdkEtagFile