diff options
author | yoyoerx <kevin.wepasnick@gmail.com> | 2016-03-11 11:16:19 -0500 |
---|---|---|
committer | yoyoerx <kevin.wepasnick@gmail.com> | 2016-03-11 11:16:19 -0500 |
commit | 58bbfc5fa6e1d3166af433eaeb763d25972685cd (patch) | |
tree | 0cc81d768cc3dff7664cc0066c752f621c1ae228 /keyboard/ergodox_ez/makeallhex.sh | |
parent | 1d4b408fbc4fb00e5b3b09215684af472806b7cd (diff) |
PR190hotfix.sh, fresh hexes, makeallhex.sh script
Diffstat (limited to 'keyboard/ergodox_ez/makeallhex.sh')
-rwxr-xr-x | keyboard/ergodox_ez/makeallhex.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/keyboard/ergodox_ez/makeallhex.sh b/keyboard/ergodox_ez/makeallhex.sh new file mode 100755 index 0000000000..9ea899e1ae --- /dev/null +++ b/keyboard/ergodox_ez/makeallhex.sh @@ -0,0 +1,9 @@ +#!/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 |