Don't suppress build output when ATOM_NOISY_BUILD is set

This commit is contained in:
Michelle Tilley
2016-06-14 14:38:51 -07:00
parent 3c717626d7
commit 4fd463a2fb

View File

@@ -97,7 +97,7 @@ function bootstrap() {
}
var moduleInstallOptions = {env: moduleInstallEnv};
if (process.argv.indexOf('--no-quiet') === -1) {
if (process.argv.indexOf('--no-quiet') === -1 || process.env.ATOM_NOISY_BUILD) {
buildInstallCommand += ' --loglevel error';
apmInstallCommand += ' --loglevel error';
moduleInstallCommand += ' --loglevel error';