From 8f993a620029cd9e08919d65a113264ee8a5ebe7 Mon Sep 17 00:00:00 2001 From: Olcan Date: Sun, 8 Jun 2025 16:43:04 -0700 Subject: [PATCH] drop redundant -s flag for custom sandbox build (#859) --- packages/cli/src/utils/sandbox.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/utils/sandbox.ts b/packages/cli/src/utils/sandbox.ts index 3a8914ee..cc51a327 100644 --- a/packages/cli/src/utils/sandbox.ts +++ b/packages/cli/src/utils/sandbox.ts @@ -306,7 +306,7 @@ export async function start_sandbox(sandbox: string) { ); if (isCustomProjectSandbox) { console.error(`using ${projectSandboxDockerfile} for sandbox`); - buildArgs += `-s -f ${path.resolve(projectSandboxDockerfile)} -i ${image}`; + buildArgs += `-f ${path.resolve(projectSandboxDockerfile)} -i ${image}`; } execSync(`cd ${gcRoot} && scripts/build_sandbox.sh -s ${buildArgs}`, { stdio: 'inherit',