mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Don't do everything unless --all is given
This commit is contained in:
parent
087cd6d135
commit
0d766cef1c
2 changed files with 11 additions and 9 deletions
|
|
@ -833,6 +833,10 @@ def main():
|
|||
global options, config
|
||||
|
||||
options, args = parse_commandline()
|
||||
if not args and not options.all:
|
||||
print "If you really want to build all the apps, use --all"
|
||||
sys.exit(1)
|
||||
|
||||
config = common.read_config(options)
|
||||
|
||||
if config['build_server_always']:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue