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

Unified Diff: build/android/gyp/jar.py

Issue 106923002: Don't use sys.exit() in build_utils.CheckCallDie(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: build/android/gyp/jar.py
diff --git a/build/android/gyp/jar.py b/build/android/gyp/jar.py
index 6d4fe12bfa08290fafaec3a5213a807940bd3804..cf731cd53a996cac7b3b9463e90224374c0e9b8a 100755
--- a/build/android/gyp/jar.py
+++ b/build/android/gyp/jar.py
@@ -30,7 +30,7 @@ def DoJar(options):
record_path = '%s.md5.stamp' % options.jar_path
md5_check.CallAndRecordIfStale(
- lambda: build_utils.CheckCallDie(jar_cmd, cwd=jar_cwd),
+ lambda: build_utils.CheckOutput(jar_cmd, cwd=jar_cwd),
record_path=record_path,
input_paths=class_files,
input_strings=jar_cmd)

Powered by Google App Engine
This is Rietveld 408576698