Skip to content

Commit

Permalink
wip: revert one change to continue
Browse files Browse the repository at this point in the history
  • Loading branch information
hulkoba committed May 23, 2024
1 parent 8c69272 commit 06de91f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions conda_smithy/lint_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1155,9 +1155,12 @@ def run_conda_forge_specific(meta, recipe_dir, lints, hints):

# 4: Do not delete example recipe
if is_staged_recipes and recipe_dir is not None:
example_meta_fname = (
Path(recipe_dir).parent / "example" / "meta.yaml"
).absolute()
example_meta_fname = os.path.abspath(
os.path.join(recipe_dir, "..", "example", "meta.yaml")
)
# example_meta_fname = (
# Path(recipe_dir).parent / "example" / "meta.yaml"
# ).absolute()

if not example_meta_fname.exists():
msg = (
Expand Down

0 comments on commit 06de91f

Please sign in to comment.