Pass new CI parameter to runApmInstall

This commit is contained in:
David Wilson
2018-08-09 06:11:47 -07:00
parent 298db7314c
commit 653822bf15

View File

@@ -54,7 +54,7 @@ if (!process.env.CI) {
files.forEach(file => {
const packageDir = path.dirname(file)
process.stdout.write(`Installing packages/${path.basename(packageDir)} `)
runApmInstall(path.dirname(file), true)
runApmInstall(path.dirname(file), false, true)
if (process.platform === 'win32') {
return process.stdout.write('done\n'.green);