From d0c3acbe3e58c1ad8bc74a8a53522cbe523eea53 Mon Sep 17 00:00:00 2001 From: Nick Brassel Date: Sun, 1 Mar 2020 11:50:49 +1100 Subject: Allow for ChibiOS 20.x (master), as well as enabling ChibiOS-Contrib HAL. (#8272) --- util/chibios-upgrader.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util') diff --git a/util/chibios-upgrader.sh b/util/chibios-upgrader.sh index 4f2712595..2174da3cf 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() { -- cgit v1.2.3