change rename to move in mirror creation
This commit is contained in:
parent
26b86db8a4
commit
ab8e79fc2d
1 changed files with 2 additions and 1 deletions
|
@ -23,6 +23,7 @@
|
||||||
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
##############################################################################
|
##############################################################################
|
||||||
import os
|
import os
|
||||||
|
import shutil
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
import spack.packages as packages
|
import spack.packages as packages
|
||||||
|
@ -78,7 +79,7 @@ def mirror(parser, args):
|
||||||
final_dst = new_path(pkg_path, basename)
|
final_dst = new_path(pkg_path, basename)
|
||||||
|
|
||||||
os.chdir(working_dir)
|
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)
|
tty.msg("Added %s to mirror" % final_dst)
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
|
|
Loading…
Reference in a new issue