check-keymaps.sh revision 3e2147858f21943d5f4a781c60f33ac22c6096ed
# and that all key maps listed in the rules are valid and present in
SRCDIR=${1:-.}
[ -e "$KEYLIST" ] || {
exit 1
}
[ -z "$missing" ] || {
exit 1
}
# check that all maps referred to in $RULES exist
# ignore inline mappings
[ "$m" = "${m#0x}" ] || continue
[ -e ${KEYMAPS_DIR}/$m ] || {
exit 1
}
exit 1
}
done