Skip to content

Commit f8befa6

Browse files
authored
chore: show only turbo-computed task hashes in output (#6478)
1 parent a593a09 commit f8befa6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/turbo/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const { spawnProcess } = require("../utils/spawn-process");
33
const path = require("path");
44

55
const runTurbo = async (task, args, apiSecret, apiEndpoint) => {
6-
let command = ["turbo", "run", task, "--concurrency=100%"];
7-
command = command.concat(args);
6+
const command = ["turbo", "run", task, "--concurrency=100%", "--output-logs=hash-only"];
7+
command.push(...args);
88
const turboRoot = path.join(__dirname, "..", "..");
99
try {
1010
return await spawnProcess("npx", command, {

0 commit comments

Comments
 (0)