Set --ca to null on the command line

This commit is contained in:
Kevin Sawicki
2014-03-04 09:18:31 -08:00
parent 5fcde96f88
commit 071e6f885f
2 changed files with 1 additions and 2 deletions

1
.npmrc
View File

@@ -1 +0,0 @@
ca =

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 --userconfig=' + path.resolve('.npmrc') + ' ';
var npmCommand = 'npm --ca=null ';
var echoNewLine = process.platform == 'win32' ? 'echo.' : 'echo';
var commands = [
'git submodule --quiet sync',