Skip to content

Commit

Permalink
feat: run sandbox instance with --fast flag (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad authored Sep 25, 2023
1 parent e4af720 commit 52233a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crate/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ pub fn init_with_version(home_dir: impl AsRef<Path>, version: &str) -> anyhow::R
let home_dir = home_dir.as_ref().to_str().unwrap();
Command::new(&bin_path)
.envs(log_vars())
.args(&["--home", home_dir, "init"])
.args(&["--home", home_dir, "init", "--fast"])
.spawn()
.with_context(|| format!("failed to init sandbox using '{}'", bin_path.display()))
}
Expand Down

0 comments on commit 52233a3

Please sign in to comment.