mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 23:12:46 +03:00
Added the ability to flag an unbuildable release
This commit is contained in:
parent
a83b66ce87
commit
84ba9b19be
3 changed files with 20 additions and 2 deletions
|
@ -337,6 +337,15 @@ for app in apps:
|
|||
+ ") " + app['source'])
|
||||
warnings += 1
|
||||
|
||||
# If we don't have the market version, check if there is a build
|
||||
# with a commit ID starting with '!' - this means we can't build it
|
||||
# for some reason, and don't want hassling about it...
|
||||
if not gotmarketver and app['marketvercode'] != '0':
|
||||
for build in app['builds']:
|
||||
if build['vercode'] == app['marketvercode']:
|
||||
gotmarketver = True
|
||||
|
||||
# Output a message of harassment if we don't have the market version:
|
||||
if not gotmarketver and app['marketvercode'] != '0':
|
||||
if app['usebuilt']:
|
||||
addr = app['source']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue