summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-12-20 08:09:09 +0000
committerQMK Bot <hello@qmk.fm>2020-12-20 08:09:09 +0000
commitaee17984768c48613d215c2c0939cc9ba9b9dcdd (patch)
treed23e9e058159196aade17c68a3daf7eea2c6848e /util
parent24e827ee1fb78a597e66102bc64dc8f400aff50e (diff)
parent13bbeefc5af557abb1dc577bfafc709c5e09def0 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'util')
-rwxr-xr-xutil/list_keyboards.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/list_keyboards.sh b/util/list_keyboards.sh
index 672d4a7843..7849cf4d91 100755
--- a/util/list_keyboards.sh
+++ b/util/list_keyboards.sh
@@ -3,8 +3,8 @@
#
# This allows us to exclude keyboards by including a .noci file.
-find 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 | while read keyboard; do
+ keyboard=$(echo $keyboard | sed 's!keyboards/\(.*\)/rules.mk!\1!')
[ "$1" = "noci" -a -e "keyboards/${keyboard}/.noci" ] || echo "$keyboard"
done