From 35a542b51e988ad59464005d056fc350dbeff461 Mon Sep 17 00:00:00 2001 From: larsevj Date: Sun, 18 Feb 2024 22:53:51 +0100 Subject: [PATCH] Use cp instead of rsync to move partial build --- komodo/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/komodo/cli.py b/komodo/cli.py index 799f3f45..a18a7623 100755 --- a/komodo/cli.py +++ b/komodo/cli.py @@ -232,10 +232,10 @@ def generate_release_packages( yaml.dump(release, filehandle) -@profile_time("Rsyncing partial komodo to destination") +@profile_time("Copying partial komodo to destination") def rsync_komodo_to_destination(release_name: str, destination: str) -> None: shell(f"mv {release_name} .{release_name}") - shell(f"rsync -a .{release_name} {destination}") + shell(f"cp -a .{release_name} {destination}") def move_old_release_from_release_path_if_exists(release_path: Path) -> None: