diff options
author | QMK Bot <hello@qmk.fm> | 2020-12-20 08:09:09 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-12-20 08:09:09 +0000 |
commit | aee17984768c48613d215c2c0939cc9ba9b9dcdd (patch) | |
tree | d23e9e058159196aade17c68a3daf7eea2c6848e | |
parent | 24e827ee1fb78a597e66102bc64dc8f400aff50e (diff) | |
parent | 13bbeefc5af557abb1dc577bfafc709c5e09def0 (diff) |
Merge remote-tracking branch 'origin/master' into develop
-rwxr-xr-x | util/list_keyboards.sh | 4 |
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 |