mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-07 07:50:28 +03:00
checkupdates: work around multiple package ids
If there are multiple package ids in a build.gradle file and the first one we don't want, checkupdates would get stuck. Make it ignore any package id that we don't want so that it can get past that.
This commit is contained in:
parent
2de274326a
commit
3ace102bd5
3 changed files with 19 additions and 18 deletions
|
|
@ -194,7 +194,7 @@ def main():
|
|||
paths = common.manifest_paths(root_dir, [])
|
||||
if paths:
|
||||
|
||||
version, vercode, package = common.parse_androidmanifests(paths)
|
||||
version, vercode, package = common.parse_androidmanifests(paths, app)
|
||||
if not package:
|
||||
logging.error("Couldn't find package ID")
|
||||
sys.exit(1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue