diff --git a/src/rattler_build_conda_compat/jinja/jinja.py b/src/rattler_build_conda_compat/jinja/jinja.py index 73daa5a..75198d3 100644 --- a/src/rattler_build_conda_compat/jinja/jinja.py +++ b/src/rattler_build_conda_compat/jinja/jinja.py @@ -115,5 +115,5 @@ def render_recipe_with_context(recipe_content: RecipeWithContext) -> dict[str, A # and keep undefined expressions _as is_. template = env.from_string(_dump_yaml_to_string(recipe_content)) rendered_content = template.render(context_variables) - print(rendered_content) + return load_yaml(rendered_content)