You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2018/07/13 09:50:31 UTC

svn commit: r1835801 - /subversion/trunk/tools/dist/release.py

Author: julianfoad
Date: Fri Jul 13 09:50:31 2018
New Revision: 1835801

URL: http://svn.apache.org/viewvc?rev=1835801&view=rev
Log:
Fix 'release.py create-tag', following r1829155.

The 'bump revisions on branch' step errored out.

* tools/dist/release.py
  (create_tag): Un-break the 'bump revisions on branch' step.

Modified:
    subversion/trunk/tools/dist/release.py

Modified: subversion/trunk/tools/dist/release.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/release.py?rev=1835801&r1=1835800&r2=1835801&view=diff
==============================================================================
--- subversion/trunk/tools/dist/release.py (original)
+++ subversion/trunk/tools/dist/release.py Fri Jul 13 09:50:31 2018
@@ -833,7 +833,7 @@ def create_tag(args):
                                args.version.patch + 1))
 
         HEAD = subprocess.check_output(['svn', 'info', '--show-item=revision',
-                                        '--', url]).strip()
+                                        '--', branch]).strip()
         HEAD = int(HEAD)
         def file_object_for(relpath):
             fd = tempfile.NamedTemporaryFile()