This commit is contained in:
parent
178c696879
commit
ee7abed8dc
1 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
import sys
|
import sys
|
||||||
from toolchain import Recipe
|
from toolchain import Recipe
|
||||||
import logging
|
import logging
|
||||||
|
from os.path import join
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -23,5 +24,6 @@ class PythonAliasRecipe(Recipe):
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
if python:
|
if python:
|
||||||
self.depends = [python]
|
self.depends = [python]
|
||||||
|
self.recipe_dir = join(ctx.root_dir, "recipes", python)
|
||||||
|
|
||||||
recipe = PythonAliasRecipe()
|
recipe = PythonAliasRecipe()
|
||||||
|
|
Loading…
Reference in a new issue