mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Fix auto names for apps using RM/branch
This commit is contained in:
parent
560dd15464
commit
be0b215ead
1 changed files with 2 additions and 1 deletions
|
|
@ -345,7 +345,8 @@ def main():
|
||||||
elif mode == 'RepoManifest':
|
elif mode == 'RepoManifest':
|
||||||
(version, vercode) = check_repomanifest(app)
|
(version, vercode) = check_repomanifest(app)
|
||||||
elif mode.startswith('RepoManifest/'):
|
elif mode.startswith('RepoManifest/'):
|
||||||
(version, vercode) = check_repomanifest(app, mode[13:])
|
tag = mode[13:]
|
||||||
|
(version, vercode) = check_repomanifest(app, tag)
|
||||||
elif mode == 'RepoTrunk':
|
elif mode == 'RepoTrunk':
|
||||||
(version, vercode) = check_repotrunk(app)
|
(version, vercode) = check_repotrunk(app)
|
||||||
elif mode == 'HTTP':
|
elif mode == 'HTTP':
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue