Skip to content

Commit

Permalink
Merge pull request #240 from dtolnay/keepgoing
Browse files Browse the repository at this point in the history
Stabilize Cargo's `--keep-going` flag
  • Loading branch information
dtolnay committed Sep 10, 2023
2 parents cb568c1 + ba676da commit 67562e4
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 67562e4

Please sign in to comment.