From 15b8f5f49c520a83f86d6a8fdfeaf86e62758fa5 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 26 Apr 2019 22:01:08 +0100 Subject: [PATCH] continue on error --- build.cake | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build.cake b/build.cake index b0512c7e6..13cf9c5e7 100644 --- a/build.cake +++ b/build.cake @@ -268,6 +268,7 @@ Task("Run-Unit-Tests") Task("Upload-Test-Results") .IsDependentOn("Run-Unit-Tests") + .ContinueOnError() .Does(() => { var script = @" $wc = New-Object 'System.Net.WebClient' @@ -279,10 +280,6 @@ Task("Upload-Test-Results") "; // Upload the results StartPowershellScript(script); - }).OnError(exception => - { - Error("Exception when attempting to upload the unit test results to AppVeyor"); - Error(exception); }); Task("Run-Server-Build")