Skip to content

Commit

Permalink
Fix missing handling of RLN36 PAK info for release
Browse files Browse the repository at this point in the history
  • Loading branch information
AT0myks committed Jan 13, 2023
1 parent d110855 commit 5c1d329
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ def make_new_firmwares(pak_infos):
devices = load_devices()
for infos in pak_infos:
for info in infos:
if "error" in info:
continue
model_id, hw_ver_id = match(info)
model, hw_ver = get_names(devices, model_id, hw_ver_id)
ver = info["firmware_version_prefix"] + '.' + info["version_file"]
Expand Down

0 comments on commit 5c1d329

Please sign in to comment.