From 41304237660782109ab95eadab4cb3ff33ebb3de Mon Sep 17 00:00:00 2001 From: Phil Elson Date: Sat, 2 Apr 2016 15:01:31 +0100 Subject: [PATCH] Fixed the CLI so that the full recipe context can be checked. --- conda_smithy/lint_recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_smithy/lint_recipe.py b/conda_smithy/lint_recipe.py index df972b472..53ed9d187 100644 --- a/conda_smithy/lint_recipe.py +++ b/conda_smithy/lint_recipe.py @@ -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