mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-04 16:31:05 +03:00
Merge branch 'fix-bullseye-blocklist' into 'master'
checkupdates: only use bullseye_blocklist when openjdk-11 is mentioned Closes #1076 See merge request fdroid/fdroidserver!1273
This commit is contained in:
commit
d3c51f3abd
1 changed files with 2 additions and 1 deletions
|
@ -533,6 +533,7 @@ def checkupdates_app(app):
|
|||
|
||||
for build in newbuilds:
|
||||
if "sudo" in build:
|
||||
if any("openjdk-11" in line for line in build["sudo"]):
|
||||
build["sudo"] = [line for line in build["sudo"] if line not in bullseye_blocklist]
|
||||
if build["sudo"] == ['apt-get update']:
|
||||
build["sudo"] = ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue