Skip to content

Commit

Permalink
fix: compile
Browse files Browse the repository at this point in the history
  • Loading branch information
std-microblock committed Feb 12, 2024
1 parent ff4d7b8 commit 2414f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fn extract_mod_for_yaml(path: &PathBuf) -> anyhow::Result<serde_yaml::Value> {
let mut archive = zip::ZipArchive::new(zipfile)?;
let everest_name = archive
.file_names()
.find(|name| name == "everest.yaml" || name == "everest.yml")
.find(|name| name == &"everest.yaml" || name == &"everest.yml")
.context("Failed to find everest.yaml")?
.to_string();

Expand Down

0 comments on commit 2414f92

Please sign in to comment.