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

Unified Diff: recipe_engine/package.py

Issue 2802693003: include Package proto into Result proto (Closed)
Patch Set: comment Created 3 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
Index: recipe_engine/package.py
diff --git a/recipe_engine/package.py b/recipe_engine/package.py
index bd0ebf1ea48842beaa5bc6257c35721ac116ab03..a53fd7450a766414fffafe2d7438de06e842f7e1 100644
--- a/recipe_engine/package.py
+++ b/recipe_engine/package.py
@@ -303,6 +303,7 @@ class PathRepoSpec(RepoSpec):
"""A RepoSpec implementation that uses a local filesystem path."""
def __init__(self, project_id, path):
+ assert os.path.isabs(path), path
self.project_id = project_id
self.path = path
@@ -622,7 +623,7 @@ class PackageDeps(object):
them.
overrides: if not None, a dictionary of project overrides. Dictionary keys
are the `project_id` field to override, and dictionary values
- are the override path.
+ are the absolute override path.
"""
context = PackageContext.from_proto_file(repo_root, proto_file, allow_fetch,
deps_path=deps_path)

Powered by Google App Engine
This is Rietveld 408576698