mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
new config option: per-app repos to support nightly build repos
For devs that want to build and distribute nightly builds of their apps using the fdroid tools. The core idea here is to make the fdroidserver tool suite the single set of tools for all types of builds and releases. That will hopefully drive more free software developers to make f-droid.org an core channel for official releases.
This commit is contained in:
parent
e614863c69
commit
b5cbb4382f
4 changed files with 68 additions and 0 deletions
|
@ -285,6 +285,8 @@ def main():
|
|||
repo_sections.append('archive')
|
||||
if not os.path.exists('archive'):
|
||||
os.mkdir('archive')
|
||||
if config['per_app_repos']:
|
||||
repo_sections += common.get_per_app_repos()
|
||||
|
||||
if args[0] == 'init':
|
||||
ssh = paramiko.SSHClient()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue