mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +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':
|
||||
(version, vercode) = check_repomanifest(app)
|
||||
elif mode.startswith('RepoManifest/'):
|
||||
(version, vercode) = check_repomanifest(app, mode[13:])
|
||||
tag = mode[13:]
|
||||
(version, vercode) = check_repomanifest(app, tag)
|
||||
elif mode == 'RepoTrunk':
|
||||
(version, vercode) = check_repotrunk(app)
|
||||
elif mode == 'HTTP':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue