summaryrefslogtreecommitdiff
path: root/util/chibios-upgrader.sh
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2020-03-01 11:50:49 +1100
committerFlorian Didron <fdidron@users.noreply.github.com>2020-06-12 17:00:27 +0900
commit6ad01d36f13f7ab11f3d241063c075553dc34659 (patch)
treefe0e9b964f906e31ab8557deaa853319ba9458cc /util/chibios-upgrader.sh
parenteaaad37c2f14694525a8832d4a3c6b3ed6da6f00 (diff)
Allow for ChibiOS 20.x (master), as well as enabling ChibiOS-Contrib HAL. (#8272)
Diffstat (limited to 'util/chibios-upgrader.sh')
-rwxr-xr-xutil/chibios-upgrader.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/chibios-upgrader.sh b/util/chibios-upgrader.sh
index 4f27125957..2174da3cf1 100755
--- a/util/chibios-upgrader.sh
+++ b/util/chibios-upgrader.sh
@@ -38,7 +38,7 @@ find_chibi_files() {
local search_path="$1"
shift
local conditions=( "$@" )
- find "$search_path" -not -path '*/lib/chibios*' -and -not -path '*/lib/ugfx*' -and -not -path '*/util/*' -and \( "${conditions[@]}" \) | sort
+ find -L "$search_path" -not -path '*/lib/chibios*' -and -not -path '*/lib/ugfx*' -and -not -path '*/util/*' -and \( "${conditions[@]}" \) | sort
}
revert_chibi_files() {