Fix build

This commit is contained in:
Wildan M 2025-07-27 22:09:12 +07:00
parent 132199cd54
commit 5de3e8327a

View File

@ -1150,11 +1150,11 @@ fn package_toml(
return Ok(());
}
fn package_version(recipe: &Recipe) -> Option<String> {
fn package_version(recipe: &Recipe) -> String {
if recipe.build.kind == BuildKind::None {
None
""
} else {
Some("TODO".into())
"TODO"
}
}