This commit is contained in:
CherretGit
2026-03-15 16:22:51 +07:00
parent c04738a8d9
commit 9c48a92340

View File

@@ -79,7 +79,7 @@ pub fn read_manifest(path: &Path) -> anyhow::Result<Manifest> {
format!("Failed to read manifest: {}", path.display())
})?;
let manifest = serde_json::from_str(&content).with_context(|| {
format!("Failed to parse mnanifest: {}", path.display())
format!("Failed to parse manifest: {}", path.display())
})?;
Ok(manifest)
}