Skip to content

Commit

Permalink
build: remove --silent from yarn command
Browse files Browse the repository at this point in the history
`--silent` is not a valid option for Yarn 4. This causes the build-schema script to fail.
  • Loading branch information
alan-agius4 committed Jun 11, 2024
1 parent cec97fe commit 076afb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build-schema.mts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { fileURLToPath } from 'node:url';

const __dirname = dirname(fileURLToPath(import.meta.url));
const baseDir = resolve(`${__dirname}/..`);
const bazelCmd = process.env.BAZEL ?? `yarn --silent bazel`;
const bazelCmd = process.env.BAZEL ?? `yarn bazel`;
const distRoot = join(baseDir, '/dist-schema/');

function _clean() {
Expand Down

0 comments on commit 076afb7

Please sign in to comment.