Skip to content

Commit 7e3303d

Browse files
committed
Auto merge of rust-lang#17561 - mo8it:keep-going, r=Veykril
Add --keep-going to the check command Fixes rust-lang/rustlings#1628 `@Veykril` I am not sure about what you meant with "unconditionally" in rust-lang/rustlings#1628 (comment), but I didn't find out how to get the version of the toolchain anyway to do a check like in [this snippet](https://github.com/rust-lang/rust-analyzer/blob/a5b21ea0aa644dffd7cf958b43f11f221d53404e/crates/project-model/src/build_scripts.rs#L125-L127). Is this check even required if rust-analyzer was installed with the toolchain? `--keep-going` was [stabilized in 1.74](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md#cargo-174-2023-11-16)
2 parents fafacf3 + 4b482bc commit 7e3303d

File tree

1 file changed

+2
-0
lines changed
  • src/tools/rust-analyzer/crates/flycheck/src

1 file changed

+2
-0
lines changed

src/tools/rust-analyzer/crates/flycheck/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,8 @@ impl FlycheckActor {
426426
}
427427
}
428428

429+
cmd.arg("--keep-going");
430+
429431
options.apply_on_command(&mut cmd);
430432
(cmd, options.extra_args.clone())
431433
}

0 commit comments

Comments
 (0)