summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-01-01 18:09:02 +0000
committerQMK Bot <hello@qmk.fm>2021-01-01 18:09:02 +0000
commite45a2af683331ebadcedfab38953e5cdf229f281 (patch)
tree938f6e112bb47c6ce9ce05b04f1ccf6a3740943f /util
parentd288f2f5daa1f4481703c6eb49af7950ccdce10c (diff)
parente11d3d524da21912250dae170fa8e0d2039f6bcb (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'util')
-rwxr-xr-xutil/list_keyboards.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/util/list_keyboards.sh b/util/list_keyboards.sh
index 7849cf4d91..1c103e0f11 100755
--- a/util/list_keyboards.sh
+++ b/util/list_keyboards.sh
@@ -3,8 +3,6 @@
#
# This allows us to exclude keyboards by including a .noci file.
-find -L keyboards -type f -name rules.mk | grep -v keymaps | while read keyboard; do
- keyboard=$(echo $keyboard | sed 's!keyboards/\(.*\)/rules.mk!\1!')
-
+find -L keyboards -type f -name rules.mk | grep -v keymaps | sed 's!keyboards/\(.*\)/rules.mk!\1!' | while read keyboard; do
[ "$1" = "noci" -a -e "keyboards/${keyboard}/.noci" ] || echo "$keyboard"
done