[pypy-svn] pypy default: first step in fixing the force-build script - kill the svn path handling

RonnyPfannschmidt commits-noreply at bitbucket.org
Mon Mar 21 17:53:12 CET 2011


Author: Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
Branch: 
Changeset: r42819:74e1a8c4d8b2
Date: 2011-03-21 17:50 +0100
http://bitbucket.org/pypy/pypy/changeset/74e1a8c4d8b2/

Log:	first step in fixing the force-build script - kill the svn path
	handling

diff --git a/pypy/tool/release/force-builds.py b/pypy/tool/release/force-builds.py
--- a/pypy/tool/release/force-builds.py
+++ b/pypy/tool/release/force-builds.py
@@ -31,11 +31,9 @@
 ]
 
 def main():
+    #XXX: handle release tags
+    #XXX: handle validity checks
     branch = sys.argv[1]
-    if (not branch.startswith('/branch/') and not branch.startswith('/tag/') and
-        not branch.startswith('/release/')):
-        branch = '/branch/' + branch
-
     lock = defer.DeferredLock()
     requests = []
     def ebList(err):


More information about the Pypy-commit mailing list