From 3e2462a699018715f572e075514f7e91b2a354a0 Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Sun, 2 Apr 2023 23:42:19 +0530 Subject: [PATCH] Add Url and FallbackUrl in exception on Windows --- src/scripts/win32.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/win32.ps1 b/src/scripts/win32.ps1 index 5436835a..7766693a 100644 --- a/src/scripts/win32.ps1 +++ b/src/scripts/win32.ps1 @@ -155,7 +155,7 @@ Function Get-File { Invoke-WebRequest -Uri $FallbackUrl -TimeoutSec $TimeoutSec } } catch { - throw "Failed to download the build" + throw "Failed to download the assets from $Url and $FallbackUrl" } } }