From da6f7cedaeac62a1d2fb347a8a1d8a50f48fd44f Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Sun, 10 Sep 2023 18:14:46 +0200 Subject: [PATCH] new try --- commands/tinfoil.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/commands/tinfoil.py b/commands/tinfoil.py index 4afd638..0c86739 100755 --- a/commands/tinfoil.py +++ b/commands/tinfoil.py @@ -58,14 +58,14 @@ for xcz in xczs: id = id[0:-3] subprocess.run( - ["rclone", "copy", "-P", f'{remote}:"xcz/{xcz}"', "xcz/"], + ["rclone", "copy", "-P", "-v", 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", "-v", f"{remote}:nsz/dlc/{dlc}", "nsz/dlc/"], stdout=sys.stdout, ) @@ -76,7 +76,8 @@ for xcz in xczs: "rclone", "copy", "-P", - f'{remote}:"nsz/updates/{dlc}"', + "-v", + f"{remote}:nsz/updates/{dlc}", "nsz/updates/", ], stdout=sys.stdout,