fix issue with spaces
dl / lint (push) Failing after 1m16s Details
dl / docker (push) Has been skipped Details

This commit is contained in:
Michel Roux 2023-09-10 17:55:06 +02:00
parent 7062d36fb9
commit 5cf069eedc
1 changed files with 3 additions and 3 deletions

View File

@ -58,20 +58,20 @@ for xcz in xczs:
id = id[0:-3]
subprocess.run(
["rclone", "copy", "-P", f"{remote}:xcz/{xcz}", "xcz/"],
["rclone", "copy", "-P", f"{remote}:\"xcz/{xcz}\"", "xcz/"],
stdout=sys.stdout,
)
for dlc in dlcs:
if id in dlc:
subprocess.run(
["rclone", "copy", "-P", f"{remote}:nsz/dlc/{dlc}", "nsz/dlc/"],
["rclone", "copy", "-P", f"{remote}:\"nsz/dlc/{dlc}\"", "nsz/dlc/"],
stdout=sys.stdout,
)
for update in updates:
if id in update:
subprocess.run(
["rclone", "copy", "-P", f"{remote}:nsz/updates/{dlc}", "nsz/updates/"],
["rclone", "copy", "-P", f"{remote}:\"nsz/updates/{dlc}\"", "nsz/updates/"],
stdout=sys.stdout,
)