diff options
author | MURAOKA Taro <koron.kaoriya@gmail.com> | 2021-01-02 02:24:05 +0900 |
---|---|---|
committer | Zach White <skullydazed@drpepper.org> | 2021-01-01 10:08:32 -0800 |
commit | e11d3d524da21912250dae170fa8e0d2039f6bcb (patch) | |
tree | e31911506f19cd904b79fa161ad7f768bb4d8a9e | |
parent | c01a8b030e7f47e8972904f953a3ad27257ab495 (diff) | |
download | qmk_firmware-e11d3d524da21912250dae170fa8e0d2039f6bcb.tar.gz qmk_firmware-e11d3d524da21912250dae170fa8e0d2039f6bcb.zip |
speed up list_keyboards.sh
-rwxr-xr-x | util/list_keyboards.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/util/list_keyboards.sh b/util/list_keyboards.sh index 7849cf4d9..1c103e0f1 100755 --- a/util/list_keyboards.sh +++ b/util/list_keyboards.sh | |||
@@ -3,8 +3,6 @@ | |||
3 | # | 3 | # |
4 | # This allows us to exclude keyboards by including a .noci file. | 4 | # This allows us to exclude keyboards by including a .noci file. |
5 | 5 | ||
6 | find -L keyboards -type f -name rules.mk | grep -v keymaps | while read keyboard; do | 6 | find -L keyboards -type f -name rules.mk | grep -v keymaps | sed 's!keyboards/\(.*\)/rules.mk!\1!' | while read keyboard; do |
7 | keyboard=$(echo $keyboard | sed 's!keyboards/\(.*\)/rules.mk!\1!') | ||
8 | |||
9 | [ "$1" = "noci" -a -e "keyboards/${keyboard}/.noci" ] || echo "$keyboard" | 7 | [ "$1" = "noci" -a -e "keyboards/${keyboard}/.noci" ] || echo "$keyboard" |
10 | done | 8 | done |