We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
run-make-support
1 parent 705ab17 commit 5389792Copy full SHA for 5389792
src/tools/run-make-support/src/external_deps/cargo.rs
@@ -1,7 +1,8 @@
1
use crate::command::Command;
2
use crate::env_var;
3
4
-/// Returns a command that can be used to invoke Cargo.
+/// Returns a command that can be used to invoke cargo. The cargo is provided by compiletest
5
+/// through the `CARGO` env var.
6
pub fn cargo() -> Command {
- Command::new(env_var("BOOTSTRAP_CARGO"))
7
+ Command::new(env_var("CARGO"))
8
}
0 commit comments