Skip to content

Commit

Permalink
Fix where we put the extra metadata (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Sep 4, 2024
1 parent 8010505 commit 5c5d2dd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/rattler_build_conda_compat/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,12 @@ def __init__(
if not rendered_recipe:
self.meta = self.parse_recipe()
self.meta["about"] = self.meta.get("about", {})
self.meta["extra"] = self.meta.get("extra", {})
else:
self.meta = rendered_recipe
self._rendered = True
self.meta["about"] = self.meta["recipe"].get("about", {})
self.meta["extra"] = self.meta["recipe"].get("extra", {})

self.final = True
self.undefined_jinja_vars = []
Expand Down

0 comments on commit 5c5d2dd

Please sign in to comment.