install xargo from git temporarily

This commit is contained in:
Ralf Jung 2019-08-04 10:09:58 +02:00
parent a71ebf9066
commit 874437d717

View File

@ -249,7 +249,8 @@ fn setup(ask_user: bool) {
println!("Installing xargo: `cargo install xargo -f`");
}
if !cargo().args(&["install", "xargo", "-f"]).status()
// FIXME: Install from crates.io again once a new xargo got released.
if !cargo().args(&["install", "xargo", "-f", "--git", "https://github.com/japaric/xargo"]).status()
.expect("failed to install xargo")
.success()
{