Skip to content

Commit 72c1d79

Browse files
committed
👕 script/lib/run-apm-install.js: Fix lints
1 parent 035531a commit 72c1d79

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

script/lib/run-apm-install.js

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ module.exports = function(packagePath, ci, stdioOptions) {
1111
// Set our target (Electron) version so that node-pre-gyp can download the
1212
// proper binaries.
1313
installEnv.npm_config_target = CONFIG.appMetadata.electronVersion;
14-
childProcess.execFileSync(CONFIG.getApmBinPath(), ['install', ci ? '--no-save' : ''], {
15-
env: installEnv,
16-
cwd: packagePath,
17-
stdio: stdioOptions || 'inherit'
18-
});
14+
childProcess.execFileSync(
15+
CONFIG.getApmBinPath(),
16+
['install', ci ? '--no-save' : ''],
17+
{
18+
env: installEnv,
19+
cwd: packagePath,
20+
stdio: stdioOptions || 'inherit'
21+
}
22+
);
1923
};

0 commit comments

Comments
 (0)