Skip to content

Commit

Permalink
Clean up duped filenames om qmk.fm (qmk#5822)
Browse files Browse the repository at this point in the history
Removes all binaries that don't correspond to an entry in the .keyboards file
  • Loading branch information
Duckle29 authored and drashna committed May 28, 2019
1 parent a31c2ac commit 70a7b84
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions util/travis_compiled_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 70a7b84

Please sign in to comment.