Skip to content

Commit

Permalink
Merge pull request #113 from pelson/pass_the_lint_context
Browse files Browse the repository at this point in the history
Fixed the CLI so that the full recipe context can be checked.
  • Loading branch information
pelson committed Apr 2, 2016
2 parents 62f5d6a + 4130423 commit 693bf25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_smithy/lint_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ def main(recipe_dir):
with open(recipe_meta, 'r') as fh:
content = env.from_string(''.join(fh)).render()
meta = ruamel.yaml.load(content, ruamel.yaml.RoundTripLoader)
results = lintify(meta)
results = lintify(meta, recipe_dir)
return results

0 comments on commit 693bf25

Please sign in to comment.