fix: Pulling the signature files instead of the executables

This commit is contained in:
Sayantan Santra 2024-03-02 19:01:33 -06:00
parent 24bc63e1a2
commit 03d07c13b1
Signed by: SinTan1729
GPG Key ID: EB3E68BFBA25C85F
1 changed files with 1 additions and 1 deletions

View File

@ -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: