aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/ergodox_ez/190hotfix.sh
diff options
context:
space:
mode:
authorGravatar Stephen Christie <undersampled@live.com>2016-08-02 22:51:30 -0400
committerGravatar Stephen Christie <undersampled@live.com>2016-08-02 22:51:30 -0400
commitbf2b260429dbc015d49d005065a37441c8f15753 (patch)
treeff87f04b747ce54870e8fb2a56af205079f9415c /keyboards/ergodox_ez/190hotfix.sh
parent0acb394ac41f56895d4287d950a79bca5437a45c (diff)
parent79a9e04706919b4cc684f9ee9420ef38470bcd66 (diff)
downloadqmk_firmware-bf2b260429dbc015d49d005065a37441c8f15753.tar.gz
Merge branch 'master' of http://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'keyboards/ergodox_ez/190hotfix.sh')
-rwxr-xr-xkeyboards/ergodox_ez/190hotfix.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/keyboards/ergodox_ez/190hotfix.sh b/keyboards/ergodox_ez/190hotfix.sh
deleted file mode 100755
index bdc3adce2..000000000
--- a/keyboards/ergodox_ez/190hotfix.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-#a tool to fix broken keymaps as a result of pull request #190
-#changing the declaration of matrix_scan_user() and matrix_init_user()
-#
-#This script will save a copy of the specified keymap as keymap.c.bak
-#and then create a new keymap.c with the definion corrected.
-#this script must be run from the ergodox_ez directory
-if [ $# -ne 1 ]; then
- echo $0: usage: ./190hotfix keymap_name
- exit 1
-fi
-
-echo Saving backup as ./keymaps/$1/keymap.c.bak ...
-mv ./keymaps/$1/keymap.c ./keymaps/$1/keymap.c.bak
-
-echo Modifying ./keymaps/$1/keymap.c ...
-cat ./keymaps/$1/keymap.c.bak | sed -r 's/^void \* matrix_/void matrix_/'>./keymaps/$1/keymap.c
-
-echo Complete!