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 be6d129 commit 13f35a8Copy full SHA for 13f35a8
1 file changed
sandbox.ts
@@ -256,6 +256,7 @@ export const sandboxCopyCommand = new Command<SandboxContext>()
256
sourceSandbox.expandGlob(sourceSandboxPath),
257
async (sandboxEntry) => {
258
const tempPath = join(tempDir, sandboxEntry.path);
259
+ await Deno.mkdir(tempPath, { recursive: true });
260
await sourceSandbox.download(sandboxEntry.path, tempPath);
261
262
await Array.fromAsync(pooledMap(
0 commit comments