1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

lint: remove "no recommended build" check

In some cases we do want to not recommend any version. The client should more
or less gracefully handle this.
This commit is contained in:
Daniel Martí 2015-09-10 17:54:27 -07:00
parent 13b5966062
commit a5c2e503b2

View File

@ -228,10 +228,6 @@ def main():
if app['Update Check Name'] == appid:
warn("Update Check Name is set to the known app id - it can be removed")
cvc = int(app['Current Version Code'])
if cvc > 0 and cvc < lowest_vercode:
warn("Current Version Code is lower than any enabled build")
# Missing or incorrect categories
if not app['Categories']:
warn("Categories are not set")