Skip to content

Commit

Permalink
Add missing boolean condition
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Nov 1, 2024
1 parent 04fc99d commit 61136ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cargo-dist/src/config/v0_to_v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ impl DistMetadata {
|| precise_builds.is_some()
|| features.is_some()
|| default_features.is_some()
|| all_features.is_some();
|| all_features.is_some()
|| auditable.is_some();
let cargo_layer = needs_cargo_build_layer.then_some(BoolOr::Val(CargoBuildLayer {
common: CommonBuildLayer::default(),
rust_toolchain_version,
Expand Down

0 comments on commit 61136ea

Please sign in to comment.