diff options
| author | Olcan <[email protected]> | 2025-06-08 16:43:04 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-08 16:43:04 -0700 |
| commit | 8f993a620029cd9e08919d65a113264ee8a5ebe7 (patch) | |
| tree | 3505d245bba29a051bdb88191337e3e946bef770 /packages/cli/src/utils/sandbox.ts | |
| parent | 7e73f5755693576db5c7ff74e6e2622ac026a97d (diff) | |
drop redundant -s flag for custom sandbox build (#859)
Diffstat (limited to 'packages/cli/src/utils/sandbox.ts')
| -rw-r--r-- | packages/cli/src/utils/sandbox.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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', |
