From df079c91b524e18c8098fea54681daf58d374898 Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Fri, 6 Jan 2023 23:55:30 +0100 Subject: [PATCH] Correzione pubblicazione. --- loaih/build.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/loaih/build.py b/loaih/build.py index 0a5b820..9dcbdc0 100644 --- a/loaih/build.py +++ b/loaih/build.py @@ -410,10 +410,11 @@ class Build(loaih.RemoteBuild): else: remotepath = str.join('/', [ self.remote_path, '' ]) try: - subprocess.run(shlex.split( + subprocess.run( r"rsync -rlIvz --munge-links *.AppImage* " + - f"{self.remote_host}:{remotepath}" - ), cwd=self.appnamedir, shell=True, check=True) + f"{self.remote_host}:{remotepath}", + cwd=self.appnamedir, shell=True, check=True + ) finally: pass