Skip to content

Commit fa945d4

Browse files
committed
Fix the escaping on Darwin
1 parent d0fbc67 commit fa945d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension/ui/src/utils/Files.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const writeToPromptsVolume = async (
8282
BUSYBOX,
8383
"/bin/sh",
8484
"-c",
85-
`\\"echo ${encode(content)} | base64 -d > ${filename}\\"`,
85+
`'echo ${encode(content)} | base64 -d > ${filename}'`,
8686
]);
8787
};
8888

@@ -99,6 +99,6 @@ export const writeToMount = async (
9999
BUSYBOX,
100100
"/bin/sh",
101101
"-c",
102-
`\\"echo ${encode(content)} | base64 -d > ${filename}\\"`,
102+
`'echo ${encode(content)} | base64 -d > ${filename}'`,
103103
]);
104104
};

0 commit comments

Comments
 (0)