FIx force and crash
dl / lint (push) Failing after 2m24s Details
dl / docker (push) Has been skipped Details

This commit is contained in:
Michel Roux 2023-10-01 23:49:43 +02:00
parent 7591eae028
commit 23bcb49a5f
1 changed files with 13 additions and 7 deletions

View File

@ -2,6 +2,7 @@
import argparse
import os
import re
import time
import subprocess
import sys
@ -25,14 +26,19 @@ def drive_list(path):
def download(path, file):
if os.path.isfile(os.path.join(path, file)):
if not force and os.path.isfile(os.path.join(path, file)):
return
subprocess.run(
["rclone", "copy", "-P", "-v", f"{remote}:{path}/{file}", f"{path}/"],
check=True,
stdout=sys.stdout,
)
try:
subprocess.run(
["rclone", "copy", "-P", "-v", f"{remote}:{path}/{file}", f"{path}/"],
check=True,
stdout=sys.stdout,
)
except subprocess.CalledProcessError:
print("Waiting for 10 minutes ...")
time.sleep(10 * 60)
download(path, file)
req_titles = requests.get(
@ -62,7 +68,7 @@ for base in bases:
id = re_id.group(1)
if not force and id not in titles:
if id not in titles:
continue
id = id[0:-4]