Skip to content

Commit 2414f92

Browse files
fix: compile
1 parent ff4d7b8 commit 2414f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fn extract_mod_for_yaml(path: &PathBuf) -> anyhow::Result<serde_yaml::Value> {
5656
let mut archive = zip::ZipArchive::new(zipfile)?;
5757
let everest_name = archive
5858
.file_names()
59-
.find(|name| name == "everest.yaml" || name == "everest.yml")
59+
.find(|name| name == &"everest.yaml" || name == &"everest.yml")
6060
.context("Failed to find everest.yaml")?
6161
.to_string();
6262

0 commit comments

Comments
 (0)