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/04/05 14:47:14 UTC

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

Author: julianfoad
Date: Thu Apr  5 14:47:14 2018
New Revision: 1828438

URL: http://svn.apache.org/viewvc?rev=1828438&view=rev
Log:
* tools/dist/release.py: Use consistent alphabetical order for {bz2,gz,zip}
in the release announcement email and the download web page.

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=1828438&r1=1828437&r2=1828438&view=diff
==============================================================================
--- subversion/trunk/tools/dist/release.py (original)
+++ subversion/trunk/tools/dist/release.py Thu Apr  5 14:47:14 2018
@@ -956,6 +956,7 @@ def get_sha1info(args):
     target = get_target(args)
 
     sha1s = glob.glob(os.path.join(target, 'subversion*-%s*.sha1' % args.version))
+    sha1s.sort()
 
     class info(object):
         pass