drop redundant -s flag for custom sandbox build (#859)

This commit is contained in:
Olcan 2025-06-08 16:43:04 -07:00 committed by GitHub
parent 7e73f57556
commit 8f993a6200
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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',