From 840b1529a35080956edbff4af587ab179fdf7023 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Thu, 23 Jan 2025 09:24:49 +0900 Subject: [PATCH] LIBMAN: added support for wildcards in exclusion list --- automation_tools/libman.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation_tools/libman.sh b/automation_tools/libman.sh index 9099e1d8..eb860c8f 100644 --- a/automation_tools/libman.sh +++ b/automation_tools/libman.sh @@ -65,7 +65,7 @@ fi is_excluded() { local file="$1" for excluded in "${excluded_libraries[@]}"; do - if [[ "$excluded" == "$file" ]]; then + if [[ "$file" == $excluded ]]; then # NOTE excluded is not quoted to allow for wildcard matching return 0 fi done