Skip to content

Commit

Permalink
Makes the policy install silent with -2
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanis committed Sep 27, 2020
1 parent a538e26 commit 41bf3f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/commands/init.js
Expand Up @@ -36,7 +36,7 @@ export async function run(config: Config, reporter: Reporter, flags: Object, arg
if (!await fs.exists(lockfilePath)) {
await fs.writeFile(lockfilePath, '');
}
await child.spawn(NODE_BIN_PATH, [process.argv[1], 'policies', 'set-version', installVersion], {
await child.spawn(NODE_BIN_PATH, [process.argv[1], 'policies', 'set-version', installVersion, '--silent'], {
stdio: 'inherit',
cwd: config.cwd,
});
Expand Down

0 comments on commit 41bf3f1

Please sign in to comment.