Log the environment.

This commit is contained in:
joshaber 2015-12-28 16:18:29 -05:00
parent 1eceae96cc
commit bf0f6afe20

View File

@ -73,7 +73,7 @@ function bootstrap() {
var moduleInstallEnv = {};
for (var e in process.env) {
moduleInstallEnv[e] = process.env[e];
// moduleInstallEnv[e] = process.env[e];
}
var electronVersion = require('../package.json').electronVersion;
@ -82,6 +82,9 @@ function bootstrap() {
moduleInstallEnv.npm_config_disturl = 'https://atom.io/download/atom-shell';
var moduleInstallOptions = {env: moduleInstallEnv};
console.log('env:')
console.log(moduleInstallEnv)
if (process.argv.indexOf('--no-quiet') === -1) {
buildInstallCommand += ' --loglevel error';
apmInstallCommand += ' --loglevel error';