We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7669d98 commit 2444c98Copy full SHA for 2444c98
src/extension/ui/src/Secrets.ts
@@ -33,7 +33,7 @@ namespace Secrets {
33
"--name",
34
secret.name,
35
"--value",
36
- `'${secret.value}'`,
+ client.host.platform === "win32" ? `\"${secret.value}\"` : `'${secret.value}'`,
37
]);
38
if (!response) {
39
client.desktopUI.toast.error(
0 commit comments