Skip to content

Commit 076afb7

Browse files
committed
build: remove --silent from yarn command
`--silent` is not a valid option for Yarn 4. This causes the build-schema script to fail.
1 parent cec97fe commit 076afb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build-schema.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { fileURLToPath } from 'node:url';
1313

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

1919
function _clean() {

0 commit comments

Comments
 (0)