mirror of
https://github.com/atom/atom.git
synced 2026-01-14 17:38:03 -05:00
Always use install for apm
This commit is contained in:
@@ -6,9 +6,10 @@ const CONFIG = require('../config')
|
||||
|
||||
module.exports = function (ci) {
|
||||
console.log('Installing apm')
|
||||
// npm ci leaves apm with a bunch of unmet dependencies
|
||||
childProcess.execFileSync(
|
||||
CONFIG.getNpmBinPath(),
|
||||
['--global-style', '--loglevel=error', ci ? 'ci' : 'install'],
|
||||
['--global-style', '--loglevel=error', 'install'],
|
||||
{env: process.env, cwd: CONFIG.apmRootPath}
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user