[CRYP-7902] Fixes issue #902

[CRYP-7902] Checks for SSL_CERTIFICATE_PATHS_TO_IGNORE fails to ignore sub-directories #902
This commit is contained in:
Martin Churchill 2020-04-08 10:02:18 +01:00 committed by GitHub
parent be75a089a7
commit e4d491d574
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@
SKIP=0 SKIP=0
# Now check if this path is on the to-be-ignored list # Now check if this path is on the to-be-ignored list
for D in ${SSL_CERTIFICATE_PATHS_TO_IGNORE}; do for D in ${SSL_CERTIFICATE_PATHS_TO_IGNORE}; do
if Equals "${D}" "${SUBDIR}"; then if ContainsString "${D}" "${SUBDIR}"; then
SKIP=1 SKIP=1
LogText "Result: skipping directory (${SUBDIR}) as it is on ignore list" LogText "Result: skipping directory (${SUBDIR}) as it is on ignore list"
fi fi