From 519a9911d9bd815e2ba231b97e385010f36fda59 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Sun, 27 Jul 2025 22:13:30 +0700 Subject: [PATCH] Fix build --- src/bin/cook.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/cook.rs b/src/bin/cook.rs index 0bd8354bd..4002f712d 100644 --- a/src/bin/cook.rs +++ b/src/bin/cook.rs @@ -1152,9 +1152,9 @@ fn package_toml( fn package_version(recipe: &Recipe) -> String { if recipe.build.kind == BuildKind::None { - "" + "".into() } else { - "TODO" + "TODO".into() } }