From cb24838bfe0815a0a3370cccb63b65d3c876d3cf Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:17:08 +0000 Subject: [PATCH] chore: show only turbo-computed task hashes --- scripts/turbo/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/turbo/index.js b/scripts/turbo/index.js index a4f8b3c54b5f..5c6230f0a459 100644 --- a/scripts/turbo/index.js +++ b/scripts/turbo/index.js @@ -3,8 +3,8 @@ const { spawnProcess } = require("../utils/spawn-process"); const path = require("path"); const runTurbo = async (task, args, apiSecret, apiEndpoint) => { - let command = ["turbo", "run", task, "--concurrency=100%"]; - command = command.concat(args); + const command = ["turbo", "run", task, "--concurrency=100%", "--output-logs=hash-only"]; + command.push(...args); const turboRoot = path.join(__dirname, "..", ".."); try { return await spawnProcess("npx", command, {