fix issue with spaces
This commit is contained in:
parent
7062d36fb9
commit
5cf069eedc
@ -58,20 +58,20 @@ for xcz in xczs:
|
|||||||
id = id[0:-3]
|
id = id[0:-3]
|
||||||
|
|
||||||
subprocess.run(
|
subprocess.run(
|
||||||
["rclone", "copy", "-P", f"{remote}:xcz/{xcz}", "xcz/"],
|
["rclone", "copy", "-P", f"{remote}:\"xcz/{xcz}\"", "xcz/"],
|
||||||
stdout=sys.stdout,
|
stdout=sys.stdout,
|
||||||
)
|
)
|
||||||
|
|
||||||
for dlc in dlcs:
|
for dlc in dlcs:
|
||||||
if id in dlc:
|
if id in dlc:
|
||||||
subprocess.run(
|
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,
|
stdout=sys.stdout,
|
||||||
)
|
)
|
||||||
|
|
||||||
for update in updates:
|
for update in updates:
|
||||||
if id in update:
|
if id in update:
|
||||||
subprocess.run(
|
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,
|
stdout=sys.stdout,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user