mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2025-02-05 14:12:34 -06:00
fix: Pulling the signature files instead of the executables
This commit is contained in:
parent
24bc63e1a2
commit
03d07c13b1
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ def update_tools(appstate):
|
|||
for item in ['revanced-cli', 'revanced-integrations', 'revanced-patches']:
|
||||
print(f"Checking updates for {item}...")
|
||||
tools = appstate['tools']
|
||||
*_, tool = filter(lambda x: x['repository'] == 'revanced/'+item, tools) # Get the last result
|
||||
tool = filter(lambda x: x['repository'] == 'revanced/'+item and x['content_type'] not in ['application/pgp-keys', 'application/json'], tools)
|
||||
latest_ver = Version(tool['version'])
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue