Skip to content

Commit 6350670

Browse files
committed
revert command exec change
1 parent f03fdf9 commit 6350670

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Sandbox.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,13 @@ export class Sandbox {
151151
return `export ${key}='${safe}'`;
152152
})
153153
.join("\n");
154-
const cmd = [
155-
`mkdir -p "$HOME/.private"`,
156-
`cat << 'EOF' > "$HOME/.private/.env"`,
157-
envStrings,
158-
`EOF`,
159-
].join("\n");
160-
await client.commands.run(cmd);
154+
commands.push(
155+
[
156+
`cat << 'EOF' > "$HOME/.private/.env"`,
157+
envStrings,
158+
`EOF`,
159+
].join("\n")
160+
);
161161
}
162162

163163
if (customSession.git) {

0 commit comments

Comments
 (0)