Version 2.3.7

Signed-off-by: Jeroen Oudshoorn <oudshoorn.jeroen@gmail.com>
This commit is contained in:
Jeroen Oudshoorn
2023-09-11 23:57:20 +02:00
parent 9fe001bc3c
commit 75094fc9ab
3 changed files with 8 additions and 15 deletions

View File

@ -38,8 +38,7 @@ def check(version, repo, native=True):
# check if this release is compatible with arm6
for asset in latest['assets']:
download_url = asset['browser_download_url']
if download_url.endswith('.zip') and (
info['arch'] in download_url or (is_arm and 'armhf' in download_url)):
if download_url.endswith('.zip') and (info['arch'] in download_url or (is_arm and 'armhf' in download_url)):
info['url'] = download_url
break