Skip to content

Commit

Permalink
Auto merge of rust-lang#128091 - heiher:xz-only, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
build-manifest: Allow building manifests for formats that only have xz compression
  • Loading branch information
bors committed Jul 27, 2024
2 parents 8fe0c75 + 58ab3cc commit d9e1dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/build-manifest/src/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl Target {
let gz = tarball_variant(builder, &base_path, "gz");
let xz = tarball_variant(builder, &base_path, "xz");

if gz.is_none() {
if gz.is_none() && xz.is_none() {
return Self::unavailable();
}

Expand Down

0 comments on commit d9e1dea

Please sign in to comment.