1
0
Fork 0

Correzione pubblicazione.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Emiliano Vavassori 2023-01-06 23:55:30 +01:00
parent a0c4fbcad0
commit df079c91b5
1 changed files with 4 additions and 3 deletions

View File

@ -410,10 +410,11 @@ class Build(loaih.RemoteBuild):
else: else:
remotepath = str.join('/', [ self.remote_path, '' ]) remotepath = str.join('/', [ self.remote_path, '' ])
try: try:
subprocess.run(shlex.split( subprocess.run(
r"rsync -rlIvz --munge-links *.AppImage* " + r"rsync -rlIvz --munge-links *.AppImage* " +
f"{self.remote_host}:{remotepath}" f"{self.remote_host}:{remotepath}",
), cwd=self.appnamedir, shell=True, check=True) cwd=self.appnamedir, shell=True, check=True
)
finally: finally:
pass pass