Skip to content

Commit 43c5eae

Browse files
committed
add openssl-4.x support
1 parent 30071fe commit 43c5eae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
def get_version_from_branch(branch: str) -> str:
1111
if branch == "master":
1212
return "master"
13-
if match := re.match(r"openssl-(3\.[0-9]+)", branch):
13+
if match := re.match(r"openssl-([34]\.[0-9]+)", branch):
1414
return match.group(1)
1515
if branch == "OpenSSL_1_1_1-stable":
1616
return "1.1.1"

0 commit comments

Comments
 (0)