From 7512da8f3d94de1309fc61983d3cf5b47394327d Mon Sep 17 00:00:00 2001 From: Winston Liu <50Wliu@users.noreply.github.com> Date: Tue, 7 May 2019 15:29:04 -0400 Subject: [PATCH] Okay, add it to the end --- script/lib/run-apm-install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/lib/run-apm-install.js b/script/lib/run-apm-install.js index 267b47717..f911f142e 100644 --- a/script/lib/run-apm-install.js +++ b/script/lib/run-apm-install.js @@ -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'} ) }