From ee7abed8dc37bf28ed64e71d96345249dbeecd4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20HERVIER?= Date: Mon, 16 Sep 2019 19:53:15 +0200 Subject: [PATCH] Fix python recipe folder with the right python folder (python2 or python3) #363 (#364) --- recipes/python.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/python.py b/recipes/python.py index 21d9868..aecce71 100644 --- a/recipes/python.py +++ b/recipes/python.py @@ -2,6 +2,7 @@ import sys from toolchain import Recipe import logging +from os.path import join logger = logging.getLogger(__name__) @@ -23,5 +24,6 @@ class PythonAliasRecipe(Recipe): sys.exit(1) if python: self.depends = [python] + self.recipe_dir = join(ctx.root_dir, "recipes", python) recipe = PythonAliasRecipe()