crash if fails
dl / lint (push) Successful in 1m25s Details
dl / docker (push) Successful in 40s Details

This commit is contained in:
Michel Roux 2023-09-10 20:46:49 +02:00
parent 58cf28b90b
commit 8dc804a6e8
1 changed files with 3 additions and 0 deletions

View File

@ -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,
)