Skip to content

Commit

Permalink
Merge pull request #7629 from unfoldingWord/bugfix-mcleanb-just-warn-…
Browse files Browse the repository at this point in the history
…on-missing-LITE-builds

bugfix / update latest version script to just warn if LITE build is missing
  • Loading branch information
PhotoNomad0 authored Jan 3, 2025
2 parents cee296f + 1d3750b commit 3e084cd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/latest/getLatestTcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,11 @@ def json_to_html(json_data, key):
html = json_to_html(max_installers, 'max')
print (html)

html = json_to_html(lite_installers, 'lite')
print (html)
try:
html = json_to_html(lite_installers, 'lite')
print (html)
except:
print("No LITE builds")

#####################################################
# JSON Output is in this format:
Expand Down

0 comments on commit 3e084cd

Please sign in to comment.