[MacOS] Do not install latest OpenSSL (#4154)

This commit is contained in:
Mikhail Koliada
2021-09-28 11:24:02 +03:00
committed by GitHub
parent 3d52ccd527
commit 9bb6c3297b
2 changed files with 1 additions and 4 deletions

View File

@@ -308,7 +308,7 @@ function Get-PackerVersion {
}
function Get-OpenSSLVersion {
$opensslVersion = Get-Item /usr/local/opt/openssl | ForEach-Object {"{0} ``({1} -> {2})``" -f (Run-Command "openssl version"), $_.FullName, $_.Target}
$opensslVersion = Get-Item /usr/local/opt/openssl@1.1 | ForEach-Object {"{0} ``({1} -> {2})``" -f (Run-Command "openssl version"), $_.FullName, $_.Target}
return $opensslVersion
}