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 f03fdf9 commit 6350670Copy full SHA for 6350670
src/Sandbox.ts
@@ -151,13 +151,13 @@ export class Sandbox {
151
return `export ${key}='${safe}'`;
152
})
153
.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);
+ commands.push(
+ [
+ `cat << 'EOF' > "$HOME/.private/.env"`,
+ envStrings,
+ `EOF`,
+ ].join("\n")
+ );
161
}
162
163
if (customSession.git) {
0 commit comments