From 5baa2b889f4b911bfd49b2ab6dc908a1fb2f8e23 Mon Sep 17 00:00:00 2001 From: Thomas Powell Date: Thu, 24 Oct 2024 13:21:56 -0400 Subject: [PATCH] find anything in install_dir with ssl in name Signed-off-by: Thomas Powell --- config/software/openssl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/software/openssl.rb b/config/software/openssl.rb index a31b95686..32b4bdfc9 100644 --- a/config/software/openssl.rb +++ b/config/software/openssl.rb @@ -232,6 +232,6 @@ command "#{windows? ? "Perl.exe" : ""} ./util/wrap.pl -fips #{install_dir}/embedded/bin/openssl list -provider-path providers -provider fips -providers" command "#{install_dir}/embedded/bin/openssl list -providers" command "echo '🤔🐴💩 <<< openssl dir >>>'" - command "ls #{install_dir}" + command "find #{install_dir} -name '*ssl*'" end end