]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - util/travis_compiled_push.sh
Remove AUTOGEN and fix Travis Compiled Push scripts (#5077)
[qmk_firmware.git] / util / travis_compiled_push.sh
index 66b3beb6cef539d931a0665fe87aadb26156d3de..155a9a8d2bb5c4e5c7c1463cc123a00d64124c46 100755 (executable)
@@ -69,10 +69,9 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
        # rm -f compiled/*.hex
 
        # ignore errors here
-       for file in ../qmk_firmware/keyboards/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done
-       for file in ../qmk_firmware/keyboards/*/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done
-       for file in ../qmk_firmware/keyboards/*/*/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done
-       for file in ../qmk_firmware/keyboards/*/*/*/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done
+  # In theory, this is more flexible, and will allow for additional expansion of additional types of files and other names
+  mv -t compiled ../qmk_firmware/*_default.*(hex|bin) || true
+
        bash _util/generate_keyboard_page.sh
        git add -A
        git commit -m "generated from qmk/qmk_firmware@${rev}"