ctrl-c while "doit up" works better

This commit is contained in:
boyska 2018-08-09 17:55:12 +02:00
parent 56f3127af6
commit 4279c8f09f

View file

@ -94,9 +94,10 @@ def task_up():
'''RUN that stuff!'''
return {
'task_dep': ['build', 'dbprepare', '_fix_perms'],
'teardown': [(stop, [])],
'actions': [LongRunning(
(COMPOSE + ' up'),
shell=True)
(COMPOSE + ' up').split(),
shell=False)
]
}