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

Unified Diff: blimp/tools/bundle-engine.py

Issue 1550793002: Make blimp_engine_bundle action silent when successful. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: blimp/tools/bundle-engine.py
diff --git a/blimp/tools/bundle-engine.py b/blimp/tools/bundle-engine.py
index 62151ec73f0d648cbe33112fa9205811c70f7e83..911e4db8fab8866621a10779b54638c1274cb520 100755
--- a/blimp/tools/bundle-engine.py
+++ b/blimp/tools/bundle-engine.py
@@ -14,6 +14,7 @@ import argparse
import errno
import os
import subprocess
+import sys
import tarfile
def ReadDependencies(manifest):
@@ -60,9 +61,8 @@ def main():
tarball.add(dep)
except OSError as e:
if e.errno == errno.ENOENT:
- print dep + " not found (did you build the engine?)"
+ print >> sys.stderr, dep + " not found (did you build the engine?)"
exit(1)
- print 'Created ' + args.output
if __name__ == "__main__":
main()
« 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