Skip to content

Commit

Permalink
build-manifest: Allow building manifests for formats that only have x…
Browse files Browse the repository at this point in the history
…z compression
  • Loading branch information
heiher committed Jul 23, 2024
1 parent 49649bf commit 58ab3cc
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 58ab3cc

Please sign in to comment.