Author: hwright
Date: Fri Aug 12 03:34:53 2011
New Revision: 1156953

URL: http://svn.apache.org/viewvc?rev=1156953&view=rev
Log:
* tools/dist/release.py
  (move_to_dist): Copy, not move, the tarballs and sigs to the dist directory.

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=1156953&r1=1156952&r2=1156953&view=diff
==============================================================================
--- subversion/trunk/tools/dist/release.py (original)
+++ subversion/trunk/tools/dist/release.py Fri Aug 12 03:34:53 2011
@@ -538,7 +538,7 @@ def move_to_dist(args):
     filenames = glob.glob(os.path.join(target,
                                        'subversion-%s.*' % str(args.version)))
     for filename in filenames:
-        shutil.move(filename, args.dist_dir)
+        shutil.copy(filename, args.dist_dir)
 
 
 #----------------------------------------------------------------------


Reply via email to