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 c0f3c0e commit 2a7cdeaCopy full SHA for 2a7cdea
src/extension/ui/src/utils/Files.ts
@@ -83,7 +83,9 @@ export const writeToPromptsVolume = async (
83
BUSYBOX,
84
"/bin/sh",
85
"-c",
86
- `'echo ${encode(content)} | base64 -d > ${filename}'`,
+ client.host.platform === "win32"
87
+ ? `\"echo ${encode(content)} | base64 -d > ${filename}\"`
88
+ : `'echo ${encode(content)} | base64 -d > ${filename}'`,
89
]);
90
};
91
@@ -100,6 +102,8 @@ export const writeToMount = async (
100
102
101
103
104
105
106
107
108
109
0 commit comments