Commit 3ab75c3 1 parent c774e0d commit 3ab75c3 Copy full SHA for 3ab75c3
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ genbundle() {
42
42
local sslimpl=" $1 "
43
43
local certpem=" $2 "
44
44
45
- local list=$( " $brew " list $sslimpl 2> /dev/null)
45
+ local list=$( " $brew " list --formula $sslimpl 2> /dev/null)
46
46
[[ -z $list ]] && continue
47
47
48
48
local openssl=$( echo " $list " | grep bin/openssl | head -n 1)
@@ -76,10 +76,10 @@ certs="${tmpdir}/cert.pem"
76
76
" ${osx_ca_certs} " > " ${certs} "
77
77
78
78
exitcode=0
79
- impls=($( " $brew " list | grep -E ' ^((libre|open)ssl(@[0-9\.]+)?)$' ) )
79
+ impls=($( " $brew " list --formula | grep -E ' ^((libre|open)ssl(@[0-9\.]+)?)$' ) )
80
80
for sslimpl in " ${impls[@]} " ; do
81
81
genbundle " ${sslimpl} " " ${certs} "
82
82
exitcode=$(( $exitcode + $? ))
83
83
done
84
84
85
- exit $exitcode
85
+ exit $exitcode
You can’t perform that action at this time.
0 commit comments