]> Cypherpunks repositories - gostls13.git/commitdiff
codereview: release-branch.go1.4 is now a work branch
authorRuss Cox <rsc@golang.org>
Fri, 5 Dec 2014 19:02:51 +0000 (14:02 -0500)
committerRuss Cox <rsc@golang.org>
Fri, 5 Dec 2014 19:02:51 +0000 (14:02 -0500)
(That is, changes can originate in the branch.
The main branch has diverged enough that this
may be necessary.)

LGTM=bradfitz
R=adg, bradfitz
CC=golang-codereviews
https://golang.org/cl/187810043

lib/codereview/codereview.py

index 416702c634a895b48f164ff8ef9fabca438b3450..28404d0dbe95808c5a20b998105103968d6a9413 100644 (file)
@@ -2726,7 +2726,7 @@ def RietveldSetup(ui, repo):
                        releaseBranch = t                       
 
 def workbranch(name):
-       return name == "default" or name.startswith('dev.')
+       return name == "default" or name.startswith('dev.') or name == 'release-branch.go1.4'
 
 #######################################################################
 # http://codereview.appspot.com/static/upload.py, heavily edited.