Skip to content

Commit

Permalink
Fix runYarn function in release script (#15200)
Browse files Browse the repository at this point in the history
* Maybe it works

* Remove `--silent`
  • Loading branch information
sosukesuzuki committed Aug 3, 2023
1 parent 825425c commit c3d53dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async function runYarn(args, options) {
args = Array.isArray(args) ? args : [args];

try {
return await execa("yarn", ["--silent", "run", ...args], options);
return await execa("yarn", [...args], options);
} catch (error) {
throw new Error(`\`yarn ${args.join(" ")}\` failed\n${error.stdout}`);
}
Expand Down

0 comments on commit c3d53dc

Please sign in to comment.