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': |