Skip to content

Commit 4969d0b

Browse files
committed
fixed bug on windows running cmd
1 parent 4a5b84d commit 4969d0b

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
@@ -61,7 +61,7 @@ export class CloudAuth implements Authenticator {
6161
try {
6262
let cmd = config['cmd-path'];
6363
if (args) {
64-
cmd = `${cmd} ${args}`;
64+
cmd = `"${cmd}" ${args}`;
6565
}
6666
result = shelljs.exec(cmd, { silent: true });
6767
if (result.code !== 0) {

0 commit comments

Comments
 (0)