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

Unified Diff: build/win/reorder-imports.py

Issue 1363243002: win: Let reorder-imports.py fail if its invocation of swapimport.exe fails. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
« 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: build/win/reorder-imports.py
diff --git a/build/win/reorder-imports.py b/build/win/reorder-imports.py
index 281668fff5b457a363608a00865e5b285d94e417..00a69d75de373db3260cdf9fab2b6b911f24e6e9 100755
--- a/build/win/reorder-imports.py
+++ b/build/win/reorder-imports.py
@@ -31,7 +31,7 @@ def reorder_imports(input_dir, output_dir, architecture):
args.append('chrome_elf.dll');
- subprocess.call(args)
+ subprocess.check_call(args)
for fname in glob.iglob(os.path.join(input_dir, 'chrome.exe.*')):
shutil.copy(fname, os.path.join(output_dir, os.path.basename(fname)))
« 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