diff --git a/scripts/turbo/index.js b/scripts/turbo/index.js index 58ef5df98cf6d..7747fc2a04bec 100644 --- a/scripts/turbo/index.js +++ b/scripts/turbo/index.js @@ -15,7 +15,14 @@ const runTurbo = async (task, args, apiSecret, apiEndpoint) => { command = command.concat(args); const turboRoot = path.join(__dirname, "..", ".."); try { - return await spawnProcess("npx", command, { stdio: "inherit", cwd: turboRoot }); + return await spawnProcess("npx", command, { + stdio: "inherit", + cwd: turboRoot, + env: { + ...process.env, + TURBO_TELEMETRY_DISABLED: "1", + }, + }); } catch (error) { console.error("Error running turbo:", error); if (args?.length > 0) {