Merge pull request #211 from electron-userland/mafintosh-patch-1

log level is missing http
This commit is contained in:
Zeke Sikelianos 2016-11-15 12:37:56 -08:00 committed by GitHub
commit dfcc044688

View file

@ -41,7 +41,7 @@ download({
platform: process.env.npm_config_platform, platform: process.env.npm_config_platform,
arch: process.env.npm_config_arch, arch: process.env.npm_config_arch,
strictSSL: process.env.npm_config_strict_ssl === 'true', strictSSL: process.env.npm_config_strict_ssl === 'true',
quiet: ['info', 'verbose', 'silly'].indexOf(process.env.npm_config_loglevel) === -1 quiet: ['info', 'verbose', 'silly', 'http'].indexOf(process.env.npm_config_loglevel) === -1
}, extractFile) }, extractFile)
// unzips and makes path.txt point at the correct executable // unzips and makes path.txt point at the correct executable