External Paths for target_folder_path too

This commit is contained in:
José Manuel Barroso Galindo
2022-05-15 17:41:03 +02:00
committed by GitHub
parent 3d420037c6
commit 55462d5c4a

View File

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