| Index: recipe_engine/package.py
|
| diff --git a/recipe_engine/package.py b/recipe_engine/package.py
|
| index 0144800d16beb5f32cd27e8e66f6053464e8cd68..ee70f7b8b1912c1ca0f22ae7e0cd5ca6ecb5689d 100644
|
| --- a/recipe_engine/package.py
|
| +++ b/recipe_engine/package.py
|
| @@ -122,8 +122,9 @@ class PackageContext(object):
|
|
|
| if not deps_path:
|
| deps_path = os.path.join(repo_root, recipes_path, '.recipe_deps')
|
| +
|
| return cls(os.path.join(repo_root, recipes_path),
|
| - deps_path,
|
| + os.path.abspath(deps_path),
|
| repo_root,
|
| allow_fetch)
|
|
|
|
|