Skip to content

Commit ba676da

Browse files
committed
Stabilize Cargo's --keep-going flag
1 parent eec8ca6 commit ba676da

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/cargo.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ pub fn build_dependencies(project: &mut Project) -> Result<()> {
8787

8888
// Check if this Cargo contains https://github.com/rust-lang/cargo/pull/10383
8989
project.keep_going = command
90-
.arg("-Zunstable-options")
9190
.arg("--keep-going")
9291
.stdout(Stdio::null())
9392
.stderr(Stdio::null())
@@ -139,7 +138,6 @@ pub fn build_all_tests(project: &Project) -> Result<Output> {
139138
.arg("--quiet")
140139
.arg("--color=never")
141140
.arg("--message-format=json")
142-
.arg("-Zunstable-options")
143141
.arg("--keep-going")
144142
.output()
145143
.map_err(Error::Cargo)

0 commit comments

Comments
 (0)