mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Don't suppress build output when ATOM_NOISY_BUILD is set
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user