Okay, add it to the end

This commit is contained in:
Winston Liu
2019-05-07 15:29:04 -04:00
parent ee9deacb48
commit 7512da8f3d

View File

@@ -13,7 +13,7 @@ module.exports = function (packagePath, ci, stdioOptions) {
installEnv.npm_config_target = CONFIG.appMetadata.electronVersion
childProcess.execFileSync(
CONFIG.getApmBinPath(),
['--verbose', ci ? 'ci' : 'install'],
[ci ? 'ci' : 'install', '--verbose'],
{env: installEnv, cwd: packagePath, stdio: stdioOptions || 'inherit'}
)
}