We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cdcdec commit 5960e8bCopy full SHA for 5960e8b
src/bin/cargo-miri.rs
@@ -101,7 +101,7 @@ fn cargo() -> Command {
101
}
102
103
fn xargo() -> Command {
104
- if let Ok(val) = std::env::var("XARGO") {
+ if let Ok(val) = std::env::var("XARGO_CHECK") {
105
// Bootstrap tells us where to find xargo
106
Command::new(val)
107
} else {
@@ -280,7 +280,7 @@ fn setup(ask_user: bool) {
280
281
// First, we need xargo.
282
if xargo_version().map_or(true, |v| v < XARGO_MIN_VERSION) {
283
- if std::env::var("XARGO").is_ok() {
+ if std::env::var("XARGO_CHECK").is_ok() {
284
// The user manually gave us a xargo binary; don't do anything automatically.
285
show_error(format!("Your xargo is too old; please upgrade to the latest version"))
286
0 commit comments