diff --git a/src/steps.rs b/src/steps.rs index 117de49c..872ab578 100644 --- a/src/steps.rs +++ b/src/steps.rs @@ -24,7 +24,7 @@ pub fn run_tpm(tpm: &PathBuf) -> Result<(), failure::Error> { pub fn run_cargo_update(cargo_update: &PathBuf) -> Result<(), failure::Error> { Command::new(&cargo_update) - .args(&["install-update", "--all"]) + .args(&["install-update", "--git", "--all"]) .spawn()? .wait()? .check()?;