aboutsummaryrefslogtreecommitdiff
path: root/util/travis_compiled_push.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/travis_compiled_push.sh')
-rwxr-xr-xutil/travis_compiled_push.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/util/travis_compiled_push.sh b/util/travis_compiled_push.sh
index 66b3beb6c..155a9a8d2 100755
--- a/util/travis_compiled_push.sh
+++ b/util/travis_compiled_push.sh
@@ -69,10 +69,9 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
69 # rm -f compiled/*.hex 69 # rm -f compiled/*.hex
70 70
71 # ignore errors here 71 # ignore errors here
72 for file in ../qmk_firmware/keyboards/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done 72 # In theory, this is more flexible, and will allow for additional expansion of additional types of files and other names
73 for file in ../qmk_firmware/keyboards/*/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done 73 mv -t compiled ../qmk_firmware/*_default.*(hex|bin) || true
74 for file in ../qmk_firmware/keyboards/*/*/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done 74
75 for file in ../qmk_firmware/keyboards/*/*/*/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done
76 bash _util/generate_keyboard_page.sh 75 bash _util/generate_keyboard_page.sh
77 git add -A 76 git add -A
78 git commit -m "generated from qmk/qmk_firmware@${rev}" 77 git commit -m "generated from qmk/qmk_firmware@${rev}"