diff options
author | Nick Brassel <nick@tzarc.org> | 2021-10-07 10:57:48 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 10:57:48 +1100 |
commit | b2a186cf92d91bbb7f98fff68c4edf571909bf89 (patch) | |
tree | c58eca68f1ca0797b8080c32be3d14b10abd286a /util | |
parent | bc1f5ef38172bc77a802fb779e5da60f800c231b (diff) | |
download | qmk_firmware-b2a186cf92d91bbb7f98fff68c4edf571909bf89.tar.gz qmk_firmware-b2a186cf92d91bbb7f98fff68c4edf571909bf89.zip |
Purge uGFX. (#14720)
* Purge uGFX.
* Remove remnants of visualizer.
* Remove remnants of uGFX.
Diffstat (limited to 'util')
-rwxr-xr-x | util/chibios_conf_updater.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/chibios_conf_updater.sh b/util/chibios_conf_updater.sh index 5ba8aa677b..d1640b6729 100755 --- a/util/chibios_conf_updater.sh +++ b/util/chibios_conf_updater.sh @@ -38,7 +38,7 @@ find_chibi_files() { local search_path="$1" shift local conditions=( "$@" ) - for file in $(find -L "$search_path" -not -path '*/lib/chibios*' -and -not -path '*/lib/ugfx*' -and -not -path '*/util/*' -and \( "${conditions[@]}" \) | sort) ; do + for file in $(find -L "$search_path" -not -path '*/lib/chibios*' -and -not -path '*/util/*' -and \( "${conditions[@]}" \) | sort) ; do if [ -z "$(grep 'include_next' "$file")" ] ; then echo $file fi |