From 55462d5c4ae292938641c90b040f8fb1565d88cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Barroso=20Galindo?= Date: Sun, 15 May 2022 17:41:03 +0200 Subject: [PATCH] External Paths for target_folder_path too --- .github/calculate_db.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/calculate_db.py b/.github/calculate_db.py index 495923f03..231052172 100755 --- a/.github/calculate_db.py +++ b/.github/calculate_db.py @@ -60,6 +60,10 @@ def main(dryrun): for zip_description in db['zips'].values(): zip_description['path'] = external_path(zip_description['path']) + if 'target_folder_path' not in zip_description: + continue + + zip_description['target_folder_path'] = external_path(zip_description['target_folder_path']) save_data_to_compressed_json(db, db_file_json, db_file_zip) if db_has_no_changes(db, db_url):