Skip to content

Commit

Permalink
Merge pull request #420 from Brendonovich/always-use-openssl-3.0.x
Browse files Browse the repository at this point in the history
always use 3.0.x for openssl 3
  • Loading branch information
Brendonovich authored Dec 28, 2023
2 parents 68a2f9a + 8ba1419 commit deb32b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cli/src/binaries/platform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ fn parse_openssl_version(v: &str) -> String {
let matches = r.unwrap().captures(v).unwrap();
if matches.len() > 0 {
match matches.get(1).unwrap().as_str() {
"3.1" => "3.0.x".to_string(),
version if version.starts_with("3.") => "3.0.x".to_string(),
version => format!("{version}.x"),
}
} else {
Expand Down

1 comment on commit deb32b9

@vercel
Copy link

@vercel vercel bot commented on deb32b9 Dec 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.