Skip to content

Commit 1e55e06

Browse files
authored
Merge pull request #238 from mentaman/bugfix/windowscmd
fixed bug on windows running cmd
2 parents a7a9a7c + 4969d0b commit 1e55e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cloud_auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class CloudAuth implements Authenticator {
6060
try {
6161
let cmd = config['cmd-path'];
6262
if (args) {
63-
cmd = `${cmd} ${args}`;
63+
cmd = `"${cmd}" ${args}`;
6464
}
6565
result = shelljs.exec(cmd, { silent: true });
6666
if (result.code !== 0) {

0 commit comments

Comments
 (0)