Skip to content

Commit

Permalink
Add --disable-check-for-update to cargo make invocations during build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mpdreamz committed Sep 19, 2023
1 parent 251c7b1 commit fdc1507
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/scripts/Build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down Expand Up @@ -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 () =
Expand Down

0 comments on commit fdc1507

Please sign in to comment.