drop redundant -s flag for custom sandbox build (#859)
This commit is contained in:
parent
7e73f57556
commit
8f993a6200
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue