mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-01-03 23:39:45 +01:00
Merge pull request #2434 from drwetter/fix_2429_3.0
Fix weird bash globbing (3.0)
This commit is contained in:
commit
40c6be790b
@ -7094,7 +7094,7 @@ determine_trust() {
|
||||
ca_bundles="$CA_BUNDLES_PATH/*.pem"
|
||||
fi
|
||||
for bundle_fname in $ca_bundles; do
|
||||
certificate_file[i]=$(basename ${bundle_fname//.pem})
|
||||
certificate_file[i]=$(basename ${bundle_fname//.pem} 2>/dev/null)
|
||||
if [[ ! -r $bundle_fname ]]; then
|
||||
prln_warning "\"$bundle_fname\" cannot be found / not readable"
|
||||
return 1
|
||||
|
Loading…
Reference in New Issue
Block a user