Skip to content

Commit

Permalink
fix(node-gyp): fix silent flag name (#837)
Browse files Browse the repository at this point in the history
  • Loading branch information
malept authored Aug 27, 2021
1 parent 81fcd8a commit 1e6ff78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module-type/node-gyp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class NodeGyp extends NativeModule {
'--build-from-source'
];

args.push(d.enabled ? '--verbose' : '--quiet');
args.push(d.enabled ? '--verbose' : '--silent');

if (this.rebuilder.debug) {
args.push('--debug');
Expand Down

0 comments on commit 1e6ff78

Please sign in to comment.