Skip to content

Commit 1c4afad

Browse files
committed
fix build with OTP >= 20.1 on macos
we didn't match the regexp on this platform. this change fixed it. inspired by change from @g-andrade
1 parent 6f3632a commit 1c4afad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{platform_define, "R14", no_callback_support},
66
{platform_define, "^[0-9]+", namespaced_types},
77
{platform_define, "^R", no_proxy_sni_support},
8-
{platform_define, "^(19)|(20)", no_customize_hostname_check},
8+
{platform_define, "^(19|(20))", no_customize_hostname_check},
99
{platform_define, "^20\.3", buggy_chacha_ciphers}
1010
]}.
1111

0 commit comments

Comments
 (0)