summaryrefslogtreecommitdiffstats
path: root/keyboard/ergodox_ez/makeallhex.sh
diff options
context:
space:
mode:
Diffstat (limited to 'keyboard/ergodox_ez/makeallhex.sh')
-rwxr-xr-xkeyboard/ergodox_ez/makeallhex.sh9
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 000000000..9ea899e1a
--- /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