Skip to content

Commit

Permalink
Stabilize Cargo's --keep-going flag
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 26, 2023
1 parent eec8ca6 commit ba676da
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/cargo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ pub fn build_dependencies(project: &mut Project) -> Result<()> {

// Check if this Cargo contains https://github.com/rust-lang/cargo/pull/10383
project.keep_going = command
.arg("-Zunstable-options")
.arg("--keep-going")
.stdout(Stdio::null())
.stderr(Stdio::null())
Expand Down Expand Up @@ -139,7 +138,6 @@ pub fn build_all_tests(project: &Project) -> Result<Output> {
.arg("--quiet")
.arg("--color=never")
.arg("--message-format=json")
.arg("-Zunstable-options")
.arg("--keep-going")
.output()
.map_err(Error::Cargo)
Expand Down

0 comments on commit ba676da

Please sign in to comment.