feat: Added a --fresh flag to let users create a truly bare bones sandbox without bootstrapping their config

This commit is contained in:
2026-06-17 14:20:17 -06:00
parent 587df087ed
commit 69589bd5e5
3 changed files with 48 additions and 5 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ async fn main() -> Result<()> {
}
if let Some(name) = &cli.sandbox {
return sandbox::launch(name.clone());
return sandbox::launch(name.clone(), cli.fresh);
}
install_builtins()?;