Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
30cd3faf97
161 changed files with 11 additions and 1 deletions
|
@ -4,5 +4,15 @@
|
|||
# This allows us to exclude keyboards by including a .noci file.
|
||||
|
||||
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"
|
||||
if [ "$1" = "noci" ]; then
|
||||
case "$keyboard" in
|
||||
handwired/*)
|
||||
;;
|
||||
*)
|
||||
test -e "keyboards/${keyboard}/.noci" || echo "$keyboard"
|
||||
;;
|
||||
esac
|
||||
else
|
||||
echo "$keyboard"
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue