Skip to content

Commit

Permalink
chore: remove verbosity flag when running benchmark (#6782)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulkar committed Dec 13, 2023
1 parent 1c5d7de commit cfb998d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/turbo-benchmark/src/ttft/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function run(profilePath: string) {
// Set up the monorepo we will run the benchmark on
setup();

const turboFlags = `-vvv --dry --skip-infer --profile=${profilePath}`;
const turboFlags = `--dry --skip-infer --profile=${profilePath}`;

console.log("Executing turbo build in child process", {
cwd: process.cwd(),
Expand All @@ -22,7 +22,7 @@ export function run(profilePath: string) {
try {
cp.execSync(cmd, {
...DEFAULT_EXEC_OPTS,
env: { ...process.env, EXPERIMENTAL_RUST_CODEPATH: "true" },
env: process.env,
});
} catch (e) {
// catch errors and exit. the build command seems to be erroring out due to very large output?
Expand Down

0 comments on commit cfb998d

Please sign in to comment.