Skip to content

Commit

Permalink
Use cp instead of rsync to move partial build
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Feb 18, 2024
1 parent 1b718f0 commit 35a542b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions komodo/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 35a542b

Please sign in to comment.