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

Unified Diff: git_cl.py

Issue 10891039: --bypass-hooks should bypass all checks, including descriptions checks. (Closed) Base URL: https://git.chromium.org/chromium/tools/depot_tools.git@master
Patch Set: Created 8 years, 4 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.py
diff --git a/git_cl.py b/git_cl.py
index e250c8e5e4dfcf884891629f46fbf7d217fd0cbd..9dc9339c24da683d22009b013b3ae9be483ad92c 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1254,9 +1254,13 @@ def SendUpstream(parser, args, cmd):
description = cl.GetDescription()
if not description:
- print 'No description set.'
- print 'Visit %s/edit to set it.' % (cl.GetIssueURL())
- return 1
+ if options.bypass_hooks:
+ # Something is very wrong; assume the user knows what they're doing.
+ description = "<Committed without description and with --bypass-hooks>"
M-A Ruel 2012/08/29 20:27:10 What about? if not cl.GetIssue() and options.bypas
Elliot Glaysher 2012/08/29 20:39:16 Done.
+ else:
+ print 'No description set.'
+ print 'Visit %s/edit to set it.' % (cl.GetIssueURL())
+ return 1
if cl.GetIssue():
description += "\n\nReview URL: %s" % cl.GetIssueURL()
« 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