Skip to content

Commit 96b2c34

Browse files
committed
temporarily use git version of xargo
1 parent 6a37e72 commit 96b2c34

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bin/cargo-miri.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,8 @@ fn setup(ask_user: bool) {
171171
} else {
172172
println!("Installing xargo: `cargo install xargo -f`");
173173
}
174-
if !Command::new("cargo").args(&["install", "xargo", "-f"]).status().unwrap().success() {
174+
// FIXME: Go back to using releases, once a 0.3.13 got released.
175+
if !Command::new("cargo").args(&["install", "xargo", "-f", "--git", "https://github.com/japaric/xargo"]).status().unwrap().success() {
175176
show_error(format!("Failed to install xargo"));
176177
}
177178
}

0 commit comments

Comments
 (0)