Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bootstrap: Don't rely on any default settings regarding incr. comp. i…
…n Cargo.
  • Loading branch information
michaelwoerister committed Jan 25, 2019
1 parent a41ade7 commit f4fe808
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/bootstrap/builder.rs
Expand Up @@ -991,6 +991,9 @@ impl<'a> Builder<'a> {

if self.config.incremental {
cargo.env("CARGO_INCREMENTAL", "1");
} else {
// Don't rely on any default setting for incr. comp. in Cargo
cargo.env("CARGO_INCREMENTAL", "0");
}

if let Some(ref on_fail) = self.config.on_fail {
Expand Down

0 comments on commit f4fe808

Please sign in to comment.