From fdc1507a86f62e7acf68085a9c3f157c80ea679b Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Tue, 19 Sep 2023 15:07:33 +0200 Subject: [PATCH] Add --disable-check-for-update to cargo make invocations during build --- build/scripts/Build.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/scripts/Build.fs b/build/scripts/Build.fs index 79442de1b..3cfa21de3 100644 --- a/build/scripts/Build.fs +++ b/build/scripts/Build.fs @@ -148,7 +148,7 @@ module Build = /// Builds the CLR profiler and supporting .NET managed assemblies let BuildProfiler () = dotnet "build" (Paths.ProfilerProjFile "Elastic.Apm.Profiler.Managed") - Cargo.Exec [ "make"; "build-release"; ] + Cargo.Exec [ "make"; "build-release"; "--disable-check-for-update"] /// Publishes all projects with framework versions let Publish targets = @@ -185,7 +185,7 @@ module Build = if isWindows && not isCI then msBuild "Clean" aspNetFullFramework let CleanProfiler () = - Cargo.Exec ["make"; "clean"] + Cargo.Exec ["make"; "clean"; "--disable-check-for-update"] /// Restores all packages for the solution let ToolRestore () =