change rename to move in mirror creation

This commit is contained in:
Adam Moody 2014-03-13 14:43:26 -07:00 committed by Gregory L. Lee
parent 26b86db8a4
commit ab8e79fc2d

View file

@ -23,6 +23,7 @@
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
import os
import shutil
import argparse
import spack.packages as packages
@ -78,7 +79,7 @@ def mirror(parser, args):
final_dst = new_path(pkg_path, basename)
os.chdir(working_dir)
os.rename(stage.archive_file, final_dst)
shutil.move(stage.archive_file, final_dst)
tty.msg("Added %s to mirror" % final_dst)
finally: