mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-11 06:29:15 +00:00
03cbee8637
* add the ability to exclude keyboards from travis builds * add filtering to make all: * only skip keyboards during make all: * working implementation * forego a CI_KEYBOARDS variable * optimize the startup by only listing keyboards once * add sort -u to all list_keyboard invocations * move the if else if tree back to 1 level
10 lines
353 B
Bash
Executable file
10 lines
353 B
Bash
Executable file
#!/bin/sh
|
|
# Temporary shell script to find keyboards
|
|
#
|
|
# 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!')
|
|
|
|
[ "$1" = "noci" -a -e "keyboards/${keyboard}/.noci" ] || echo "$keyboard"
|
|
done
|