check-keymaps.sh revision 6997e3b2dc0095985071e2f7496342a850cdb5ad
# 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