From ead749239d5a685e4c31e71b931c6bd33a4384b1 Mon Sep 17 00:00:00 2001 From: Eugene Rakhmatulin Date: Tue, 31 Mar 2026 16:57:56 -0700 Subject: [PATCH] Bugfix --- run-recipe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-recipe.py b/run-recipe.py index 6a2de79..1314a6a 100755 --- a/run-recipe.py +++ b/run-recipe.py @@ -149,8 +149,8 @@ def load_recipe(recipe_path: Path) -> dict[str, Any]: # Try candidates in order: add extension to original path first, # then fall back to flat recipes/ directory (for bare recipe names) candidates = [ - recipe_path.with_suffix(".yaml"), - recipe_path.with_suffix(".yml"), + Path(str(recipe_path) + ".yaml"), + Path(str(recipe_path) + ".yml"), RECIPES_DIR / recipe_path.name, RECIPES_DIR / f"{recipe_path.name}.yaml", RECIPES_DIR / f"{recipe_path.name}.yml",