2021-05-02 16:59:10 +01:00
|
|
|
"""This script automates the creation of keyboards.
|
|
|
|
"""
|
|
|
|
from milc import cli
|
|
|
|
|
|
|
|
|
|
|
|
@cli.subcommand('Creates a new keyboard')
|
|
|
|
def new_keyboard(cli):
|
|
|
|
"""Creates a new keyboard
|
|
|
|
"""
|
|
|
|
# TODO: replace this bodge to the existing script
|
2021-05-19 15:24:46 -07:00
|
|
|
cli.run(['util/new_keyboard.sh'], stdin=None, capture_output=False)
|