Skip to content

Commit

Permalink
chore: show only turbo-computed task hashes in output (aws#6478)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Sep 16, 2024
1 parent a593a09 commit f8befa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/turbo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, {
Expand Down

0 comments on commit f8befa6

Please sign in to comment.