get_dll_depensds.sh: ignore also files in c:\windows

GitHub Windows runners have system installed with a dir with a lowercase
first letter.
This commit is contained in:
Martin Pulec
2019-11-23 15:11:12 +01:00
parent d7d5c0be48
commit d60e9da5db

View File

@@ -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