Revert "Set --ca to null on the command line"

This reverts commit 7f4c8023aee10ded0088076773c6c13f92993aab.
This commit is contained in:
Kevin Sawicki
2014-03-04 09:48:13 -08:00
parent 071e6f885f
commit 01eb6e31ba
2 changed files with 2 additions and 1 deletions

View File

@@ -28,7 +28,7 @@ if (!fs.existsSync(path.join(apmInstallPath, 'node_modules')))
var apmPath = 'apm/node_modules/atom-package-manager/bin/apm'
var apmFlags = process.env.JANKY_SHA1 || process.argv.indexOf('--no-color') !== -1 ? '--no-color' : '';
var packagesToDedupe = ['fs-plus', 'humanize-plus', 'oniguruma', 'roaster', 'season'];
var npmCommand = 'npm --ca=null ';
var npmCommand = 'npm --userconfig=' + path.resolve('.npmrc') + ' ';
var echoNewLine = process.platform == 'win32' ? 'echo.' : 'echo';
var commands = [
'git submodule --quiet sync',