diff options
author | Dan McClain <dan@danmcclain.net> | 2019-10-07 14:32:30 -0400 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-11-04 16:51:03 +0900 |
commit | be4771380fe13aae243119a5863c6aff5f205346 (patch) | |
tree | e4fe61196e06ef6d7864f3f480aac7d321af6a8a /lib/python/qmk/cli/list/__init__.py | |
parent | 56dd8cfe48c7c8a2fa3962ea5bec5766d8346af5 (diff) |
[CLI] Add `qmk list_keyboards` (#6927)
`list_keyboards` replicates the `make list-keyboards` by globbing for all paths
that include `rules.mk` and then removing the paths that include `keymaps`.
This basis of this cli command could be reused in the future as a util, but is
not done so here since this would be the only place that would use it currently
Resolves #6911
Diffstat (limited to 'lib/python/qmk/cli/list/__init__.py')
-rw-r--r-- | lib/python/qmk/cli/list/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/list/__init__.py b/lib/python/qmk/cli/list/__init__.py new file mode 100644 index 0000000000..c36ba69548 --- /dev/null +++ b/lib/python/qmk/cli/list/__init__.py @@ -0,0 +1 @@ +from . import keyboards |