diff --git a/commands/tinfoil.py b/commands/tinfoil.py index 2dbed6d..a7b2ddc 100755 --- a/commands/tinfoil.py +++ b/commands/tinfoil.py @@ -60,6 +60,7 @@ for xcz in xczs: subprocess.run( ["rclone", "copy", "-P", "-v", f"{remote}:xcz/{xcz}", "xcz/"], stdout=sys.stdout, + check=True, ) for dlc in dlcs: @@ -67,6 +68,7 @@ for xcz in xczs: subprocess.run( ["rclone", "copy", "-P", "-v", f"{remote}:nsz/dlc/{dlc}", "nsz/dlc/"], stdout=sys.stdout, + check=True, ) for update in updates: @@ -81,4 +83,5 @@ for xcz in xczs: "nsz/updates/", ], stdout=sys.stdout, + check=True, )