Skip to content

Commit

Permalink
=== not !== for no-quiet check
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Jul 2, 2014
1 parent 7b09fc0 commit 4bb7e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function bootstrap() {
var moduleInstallCommand = apmPath + ' install' + apmFlags;
var dedupeCommand = apmPath + ' dedupe' + apmFlags;

if (process.argv.indexOf('--no-quiet') !== -1) {
if (process.argv.indexOf('--no-quiet') === -1) {
buildInstallCommand += ' --quiet';
apmInstallCommand += ' --quiet';
moduleInstallCommand += ' --quiet';
Expand Down

0 comments on commit 4bb7e0f

Please sign in to comment.