Don't do everything unless --all is given

This commit is contained in:
Daniel Martí 2013-12-22 21:31:35 +01:00
parent 087cd6d135
commit 0d766cef1c
2 changed files with 11 additions and 9 deletions

View file

@ -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']: