Update update-from-mds.yml

Override MDS values with local aaguid.json.

Original PR #34 (thank you @opotonniee)
pull/39/head
Tim Cappalli 2024-02-21 10:12:53 -05:00 committed by GitHub
parent 1b34d18098
commit c48c5b4e1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ jobs:
aaguid = json.load(aaguid_file)
# Combine custom aaguid.json with data from MDS
result = {**aaguid, **result_dict}
result = {**result_dict, **aaguid}
# Write combined result to file
with open('combined_aaguid.json', 'w') as output_file: