diff options
author | Mikkel Jeppesen <2756925+Duckle29@users.noreply.github.com> | 2019-05-28 20:38:47 +0200 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-05-28 11:38:47 -0700 |
commit | 70a7b84dabf3e8dc292f0aaf966a10ba9a8707f8 (patch) | |
tree | 48fa1294b0c3da1bc3a38a2748177668cebd5b05 /util | |
parent | a31c2ac03e78078f796df6e6cca08186368a1d72 (diff) |
Clean up duped filenames om qmk.fm (#5822)
Removes all binaries that don't correspond to an entry in the .keyboards file
Diffstat (limited to 'util')
-rwxr-xr-x | util/travis_compiled_push.sh | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/util/travis_compiled_push.sh b/util/travis_compiled_push.sh index d76030f831..25ed83fb03 100755 --- a/util/travis_compiled_push.sh +++ b/util/travis_compiled_push.sh @@ -55,8 +55,29 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then # rm -f compiled/*.hex # ignore errors here - # In theory, this is more flexible, and will allow for additional expansion of additional types of files and other names - mv ../qmk_firmware/*_default.*[hb][ei][xn] ./compiled/ || true + # In theory, this is more flexible, and will allow for additional expansion of additional types of files and other names + mv ../qmk_firmware/*_default.*{hex,bin} ./compiled/ || true + + # get the list of keyboards + readarray -t keyboards < .keyboards + + # replace / with _ + keyboards=("${keyboards[@]//[\/]/_}") + + # remove all binaries that don't belong to a keyboard in .keyboards + for file in "./compiled"/* ; do + match=0 + for keyboard in "${keyboards[@]}" ; do + if [[ ${file##*/} = "${keyboard}_default.bin" ]] || [[ ${file##*/} = "${keyboard}_default.hex" ]]; then + match=1 + break + fi + done + if [[ $match = 0 ]]; then + echo "Removing deprecated binary: $file" + rm "$file" + fi + done bash _util/generate_keyboard_page.sh git add -A |