From efa1e92c224f668bb05cc6b8a2aec6e35c2ba47e Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 21 Nov 2024 14:30:31 -0500 Subject: [PATCH] Set telemetry output in portable build.sh Seems this was missed who knows how long ago, so add it just in case. FYI This only affects our builds, not our users' privacy. --- portable/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/portable/build.sh b/portable/build.sh index 1894798..c9524ae 100755 --- a/portable/build.sh +++ b/portable/build.sh @@ -28,6 +28,7 @@ case ${BUILD_TYPE} in APPHOST="-p:UseAppHost=true" ;; esac +export DOTNET_CLI_TELEMETRY_OPTOUT=1 dotnet publish Jellyfin.Server --configuration Release ${RUNTIME} --output ${BUILD_DIR}/jellyfin/ -p:DebugSymbols=false -p:DebugType=none ${APPHOST} popd