kiwi-scp/src/kiwi/subcommands/enable.py
2020-08-19 03:24:19 +02:00

21 lines
486 B
Python

# local
from .utils.project import Project
from ._subcommand import ProjectCommand
class EnableCommand(ProjectCommand):
"""kiwi enable"""
def __init__(self):
super().__init__(
'enable', num_projects='+',
description="Enable whole project(s) in this instance"
)
def run(self, runner, config, args):
result = True
for project in Project.from_args(args):
result = project.enable()
return result