From 8f4ebe719144bb745f37d3a444c145d84782d8b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Barroso=20Galindo?= Date: Fri, 15 Oct 2021 05:38:32 +0200 Subject: [PATCH] Adding 'zips' field to db --- .github/calculate_db.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/calculate_db.py b/.github/calculate_db.py index 742393cff..4e57ca905 100755 --- a/.github/calculate_db.py +++ b/.github/calculate_db.py @@ -59,7 +59,8 @@ def create_db(folder, options): "db_url": options['db_url'], "db_files": options['db_files'], "latest_zip_url": options['latest_zip_url'], - "files": dict() + "files": dict(), + "zips": dict() } delete_list_regex = re.compile("^(.*_)[0-9]{8}(\.[a-zA-Z0-9]+)*$", )