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

Unified Diff: git_cl/git_cl.py

Issue 6682018: fix prompting if there were errors in the hooks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: fix prompting Created 9 years, 9 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: git_cl/git_cl.py
diff --git a/git_cl/git_cl.py b/git_cl/git_cl.py
index e1e73b6f34356a2f2c81887a2cca85c763325e5e..083db6074d7c5fa72245489b2d6e33437624042c 100644
--- a/git_cl/git_cl.py
+++ b/git_cl/git_cl.py
@@ -720,7 +720,7 @@ def UserEditedLog(starting_text):
if not result:
return
-
+
stripcomment_re = re.compile(r'^#.*$', re.MULTILINE)
return stripcomment_re.sub('', result).strip()
@@ -775,15 +775,26 @@ def RunHook(committing, upstream_branch, rietveld_server, tbr, may_prompt):
output = StringIO.StringIO()
res = presubmit_support.DoPresubmitChecks(change, committing,
verbose=None, output_stream=output, input_stream=sys.stdin,
- default_presubmit=None, may_prompt=may_prompt, tbr=tbr,
+ default_presubmit=None, may_prompt=False, tbr=tbr,
host_url=cl.GetRietveldServer())
hook_results = HookResults(output.getvalue())
if hook_results.output:
print hook_results.output
# TODO(dpranke): We should propagate the error out instead of calling exit().
- if not res:
- sys.exit(1)
+ if not res and ('** Presubmit ERRORS **' in hook_results.output or
M-A Ruel 2011/03/12 15:37:31 with '\n' ?
Dirk Pranke 2011/03/12 22:47:47 I don't understand this comment?
M-A Ruel 2011/03/13 00:53:00 I meant to use '** Presubmit ERRORS **\n' so that
+ '** Presubmit WARNINGS **' in hook_results.output):
+ res = True
+
+ if res:
+ if may_prompt:
+ response = raw_input('Are you sure you want to continue? (y/N): ')
+ if not response.lower().startswith('y'):
+ sys.exit(1)
+ else:
+ sys.exit(1)
+
M-A Ruel 2011/03/12 15:37:31 remove one extra line.
+
return hook_results
« 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