Skip to content

Commit

Permalink
fix: remove an unwrap in skip_existing (#895)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored May 31, 2024
1 parent fbdb40e commit 24e084c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub async fn skip_existing(
&match_specs,
)
.await
.unwrap();
.map_err(|e| miette::miette!("Failed to load repodata: {e}."))?;

let existing_set = existing
.iter()
Expand Down

0 comments on commit 24e084c

Please sign in to comment.