From 96b3fd670bf615a31a749d0eb40309516d7cfaae Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Wed, 6 Apr 2022 22:46:53 -0700 Subject: [PATCH] Disable nuke telemetry on Linux --- build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sh b/build.sh index 347776b7..5e02548d 100755 --- a/build.sh +++ b/build.sh @@ -20,6 +20,9 @@ export DOTNET_CLI_TELEMETRY_OPTOUT=1 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 export DOTNET_MULTILEVEL_LOOKUP=0 +# Disable telemetry because it breaks the build on Linux since nuke 6.0.0 +export NUKE_TELEMETRY_OPTOUT=1 + ########################################################################### # EXECUTION ###########################################################################