diff options
Diffstat (limited to 'lib/python/qmk/cli/new/keyboard.py')
| -rw-r--r-- | lib/python/qmk/cli/new/keyboard.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/new/keyboard.py b/lib/python/qmk/cli/new/keyboard.py new file mode 100644 index 000000000..cab0198fb --- /dev/null +++ b/lib/python/qmk/cli/new/keyboard.py | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | """This script automates the creation of keyboards. | ||
| 2 | """ | ||
| 3 | from milc import cli | ||
| 4 | |||
| 5 | |||
| 6 | @cli.subcommand('Creates a new keyboard') | ||
| 7 | def new_keyboard(cli): | ||
| 8 | """Creates a new keyboard | ||
| 9 | """ | ||
| 10 | # TODO: replace this bodge to the existing script | ||
| 11 | cli.run(['util/new_keyboard.sh'], capture_output=False) | ||
