Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1318)

Unified Diff: recipe_engine/package.py

Issue 1887653003: Fix deps_path not being absolute. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/recipes-py@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698