You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bail!("`CARGO_HOME` environment variable should be not be set in `.cargo/config` via `env.CARGO_HOME` as cargo does not use this value directly (only recursive calls to cargo would)");
1693
+
bail!("setting the `CARGO_HOME` environment variable is not supported in the `[env]` configuration table")
Copy file name to clipboardExpand all lines: tests/testsuite/cargo_env_config.rs
+1-1
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ fn env_no_cargo_home() {
79
79
80
80
p.cargo("build")
81
81
.with_status(101)
82
-
.with_stderr_contains("[..]`CARGO_HOME` environment variable should be not be set in `.cargo/config` via `env.CARGO_HOME` as cargo does not use this value directly (only recursive calls to cargo would)")
82
+
.with_stderr_contains("[..]setting the `CARGO_HOME` environment variable is not supported in the `[env]` configuration table")
0 commit comments