Skip to content

Commit

Permalink
Merge branch 'main' into release-2023-29
Browse files Browse the repository at this point in the history
  • Loading branch information
stephlow committed Jul 14, 2023
2 parents 1a2ec37 + 1952a35 commit 3663044
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tasks/provider_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,10 @@ async fn download_providers_tarball(
for entry in archive.entries()? {
let mut entry = entry?;
let path = entry.path()?;
if !path.extension().is_some_and(|ext| ext == "wasm") {
if match path.extension() {
Some(ext) => ext != "wasm",
None => true,
} {
continue;
}

Expand Down

0 comments on commit 3663044

Please sign in to comment.