1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 21:03:00 +00:00
kiwi-scp/src/kiwi/subcommands/enable.py

22 lines
486 B
Python
Raw Normal View History

2020-08-18 13:56:58 +00:00
# local
2020-08-19 01:22:03 +00:00
from .utils.project import Project
2020-08-18 13:56:58 +00:00
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
2020-08-19 01:22:03 +00:00
for project in Project.from_args(args):
result = project.enable()
2020-08-18 13:56:58 +00:00
return result