diff --git a/python_appimage/utils/fs.py b/python_appimage/utils/fs.py index 5e6ec85..4cee4ac 100644 --- a/python_appimage/utils/fs.py +++ b/python_appimage/utils/fs.py @@ -23,7 +23,7 @@ except ImportError: or (os.path.getmtime(source) > os.path.getmtime(destination)) ) ): - shutil.copyfile(source, destination) + shutil.copy(source, destination) from .log import debug