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

Unified Diff: cros_mark_as_stable.py

Issue 4385002: Fix broken quoting in cbuildbot.py, allowing for correct revving of ebuilds. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git
Patch Set: Created 10 years, 1 month 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 | « bin/cbuildbot.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cros_mark_as_stable.py
diff --git a/cros_mark_as_stable.py b/cros_mark_as_stable.py
index fe8706c2b15f471c9786c56bffa70d11c5548c00..9a3ab5221ccd69cd72296f89411ac98c389d3665 100755
--- a/cros_mark_as_stable.py
+++ b/cros_mark_as_stable.py
@@ -494,7 +494,9 @@ def main(argv):
_BuildEBuildDictionary(overlays, gflags.FLAGS.all, package_list)
for overlay, ebuilds in overlays.items():
- if not os.path.exists(overlay): continue
+ if not os.path.exists(overlay):
+ Warning("Skipping %s" % overlay)
+ continue
os.chdir(overlay)
if command == 'clean':
« no previous file with comments | « bin/cbuildbot.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698