From d60e9da5db4e3c70ceb87be5e014be63ed7ab8b3 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Sat, 23 Nov 2019 15:11:12 +0100 Subject: [PATCH] get_dll_depensds.sh: ignore also files in c:\windows GitHub Windows runners have system installed with a dir with a lowercase first letter. --- data/scripts/get_dll_depends.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/scripts/get_dll_depends.sh b/data/scripts/get_dll_depends.sh index edc7a9549..4f0ed9599 100755 --- a/data/scripts/get_dll_depends.sh +++ b/data/scripts/get_dll_depends.sh @@ -25,7 +25,7 @@ find_dll() { } is_not_system_dll() { - return $(test $(expr match "$1" '^/c/Windows') -eq 0) + return $(test $(expr match "$1" '^/c/[Ww]indows') -eq 0) } if [ $# -eq 0 ]; then