diff options
author | Adam Moody <moody20@llnl.gov> | 2014-03-13 14:43:26 -0700 |
---|---|---|
committer | Adam Moody <moody20@llnl.gov> | 2014-03-13 14:43:26 -0700 |
commit | c3f3353de0011d8366068530ac56dfe55ae66135 (patch) | |
tree | e80532b5268016a775d2530d98a7a8873175016e | |
parent | 0e38a9d16dfacfefbc7715268185f4f2bc47c116 (diff) | |
download | spack-c3f3353de0011d8366068530ac56dfe55ae66135.tar.gz spack-c3f3353de0011d8366068530ac56dfe55ae66135.tar.bz2 spack-c3f3353de0011d8366068530ac56dfe55ae66135.tar.xz spack-c3f3353de0011d8366068530ac56dfe55ae66135.zip |
change rename to move in mirror creation
-rw-r--r-- | lib/spack/spack/cmd/mirror.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/mirror.py b/lib/spack/spack/cmd/mirror.py index 77cbb1eb58..ec91ef0fd5 100644 --- a/lib/spack/spack/cmd/mirror.py +++ b/lib/spack/spack/cmd/mirror.py @@ -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: |