From f8f3aefc0ba4669461469cba14440ee3c0a6a0c2 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Thu, 13 Jun 2024 06:13:35 -0700 Subject: [PATCH] Rethrow error in Install-Remotely.ps1 --- Server/wwwroot/Content/Install-Remotely.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/wwwroot/Content/Install-Remotely.ps1 b/Server/wwwroot/Content/Install-Remotely.ps1 index 0c4f6ca5b..0a80e83e9 100644 --- a/Server/wwwroot/Content/Install-Remotely.ps1 +++ b/Server/wwwroot/Content/Install-Remotely.ps1 @@ -204,5 +204,6 @@ try { } catch { Write-Log -Message "Error occurred: $($Error[0].InvocationInfo.PositionMessage)" + throw $Error[0] Do-Exit }