Update tools/vm.py

This commit is contained in:
Pedro Algarvio 2023-11-09 17:24:49 +00:00
parent 404a659a39
commit 2b142dc81b

View file

@ -1340,7 +1340,7 @@ class VM:
destination = f"{self.name}:{rsync_remote_path}"
description = "Rsync local checkout to VM..."
if download:
self.rsync(destination + "/*", source, description, rsync_flags)
self.rsync(f"{destination}/*", source, description, rsync_flags)
else:
self.rsync(source, destination, description, rsync_flags)
if self.is_windows: