Skip to content

Commit 2db8ec8

Browse files
committed
fix problem with privatekeypath containing spaces in vscode
1 parent ae2d7f9 commit 2db8ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vscode-extension/src/commands/SetupAccount.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ export default class SetupAccount extends BaseAction {
302302
authid: authId,
303303
account: accountId,
304304
certificateid: certificateId,
305-
privatekeypath: privateKeyFilePath[0].fsPath,
305+
privatekeypath: `"${privateKeyFilePath[0].fsPath}"`,
306306
domain: url,
307307
};
308308

0 commit comments

Comments
 (0)