From 25f925f34b2481ff397f11b2d36aba7cf64ad65c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ezequiel=20P=C3=A1ssaro?= Date: Tue, 10 May 2022 15:14:08 -0300 Subject: [PATCH] Copy instead of move --- tardis/io/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tardis/io/util.py b/tardis/io/util.py index a7d2c0ea00e..0d84f7cd07b 100644 --- a/tardis/io/util.py +++ b/tardis/io/util.py @@ -405,4 +405,4 @@ def download_from_url(url, dst, src=None): """ cached_file_path = download_file(url, sources=src, pkgname="tardis") - shutil.move(cached_file_path, dst) + shutil.copy(cached_file_path, dst)