mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +00:00
9 lines
250 B
Bash
Executable file
9 lines
250 B
Bash
Executable file
#!/bin/bash
|
|
#a quick tool to rebuild all the hex files for the keymaps in the ./keymaps/ directory
|
|
make clean
|
|
for f in ./keymaps/*
|
|
do
|
|
MAPNAME=$(echo "$f"|sed -r 's#^./keymaps/##')
|
|
make KEYMAP=$MAPNAME
|
|
mv ergodox_ez.hex "$f/$MAPNAME.hex"
|
|
done
|