mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-07 16:00:28 +03:00
parent
133b626b22
commit
ed2da42eff
1 changed files with 3 additions and 2 deletions
|
|
@ -266,9 +266,10 @@ def check_repomanifest(app, branch=None):
|
||||||
if vercode:
|
if vercode:
|
||||||
logging.debug("Manifest exists in subdir '{0}'. Found version {1} ({2})"
|
logging.debug("Manifest exists in subdir '{0}'. Found version {1} ({2})"
|
||||||
.format(subdir, version, vercode))
|
.format(subdir, version, vercode))
|
||||||
if int(vercode) > int(hcode):
|
i_vercode = common.version_code_string_to_int(vercode)
|
||||||
|
if i_vercode > common.version_code_string_to_int(hcode):
|
||||||
hpak = package
|
hpak = package
|
||||||
hcode = str(int(vercode))
|
hcode = str(i_vercode)
|
||||||
hver = version
|
hver = version
|
||||||
|
|
||||||
if not hpak:
|
if not hpak:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue