Version 2.2

Signed-off-by: Jeroen Oudshoorn <oudshoorn.jeroen@gmail.com>
This commit is contained in:
Jeroen Oudshoorn
2023-09-01 00:43:05 +02:00
parent 160cc93dbc
commit 8ec7bc41f7
3 changed files with 8 additions and 3 deletions

View File

@ -38,8 +38,7 @@ def check(version, repo, native=True):
# check if this release is compatible with armv8+
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 'arm64' in download_url)):
if download_url.endswith('.zip'):
info['url'] = download_url
break