We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a593a09 commit f8befa6Copy full SHA for f8befa6
scripts/turbo/index.js
@@ -3,8 +3,8 @@ const { spawnProcess } = require("../utils/spawn-process");
3
const path = require("path");
4
5
const runTurbo = async (task, args, apiSecret, apiEndpoint) => {
6
- let command = ["turbo", "run", task, "--concurrency=100%"];
7
- command = command.concat(args);
+ const command = ["turbo", "run", task, "--concurrency=100%", "--output-logs=hash-only"];
+ command.push(...args);
8
const turboRoot = path.join(__dirname, "..", "..");
9
try {
10
return await spawnProcess("npx", command, {
0 commit comments