Skip to content

Commit 9b33897

Browse files
committed
Fix typo with getting proxy using Atom APM
1 parent 655f5e3 commit 9b33897

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/installer/helpers.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ async function _download(source, target) {
6767
const apmPath = atom.packages.getApmPath();
6868
proxy = await new Promise((resolve, reject) => {
6969
runCommand(
70-
[apmPath, '--no-color', 'config', 'get', 'https-proxy'],
70+
apmPath,
71+
['--no-color', 'config', 'get', 'https-proxy'],
7172
(code, stdout) => {
7273
if (code !== 0) {
7374
return reject(null);

0 commit comments

Comments
 (0)