19 lines
468 B
Python
19 lines
468 B
Python
# local
|
|
from .utils.project import Projects
|
|
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):
|
|
return all([
|
|
project.enable()
|
|
for project in Projects.from_args(args)
|
|
])
|