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.
cargo rustc
check
1 parent 7a1e00a commit 8c8b53cCopy full SHA for 8c8b53c
collector/src/compile/execute/mod.rs
@@ -330,12 +330,11 @@ impl<'a> CargoProcess<'a> {
330
let mut cmd = self.base_command(self.cwd, cargo_subcommand);
331
cmd.arg("-p").arg(self.get_pkgid(self.cwd)?);
332
match self.profile {
333
- Profile::Check => {
+ Profile::Check | Profile::Clippy => {
334
cmd.arg("--profile").arg("check");
335
}
336
Profile::Debug => {}
337
Profile::Doc => {}
338
- Profile::Clippy => {}
339
Profile::Opt => {
340
cmd.arg("--release");
341
0 commit comments