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 e1f0bfc commit ec765c3Copy full SHA for ec765c3
src/bootstrap/src/core/builder/cargo.rs
@@ -131,7 +131,10 @@ impl Cargo {
131
}
132
133
pub fn into_cmd(self) -> BootstrapCommand {
134
- self.into()
+ let mut cmd: BootstrapCommand = self.into();
135
+ // Disable caching for commands originating from Cargo-related operations.
136
+ cmd.do_not_cache();
137
+ cmd
138
139
140
/// Same as [`Cargo::new`] except this one doesn't configure the linker with
0 commit comments