From 31e011f85c0be005b31f9856c31f9398916ef4ce Mon Sep 17 00:00:00 2001 From: Ryo Nakamura Date: Tue, 7 Jan 2025 14:41:49 +0900 Subject: [PATCH] macos: install openssl@3.0 from homebrew because openssl@1.1 has been disabled since 2024/10/24. --- scripts/install-build-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-build-deps.sh b/scripts/install-build-deps.sh index 3ec3d49..63fe87a 100755 --- a/scripts/install-build-deps.sh +++ b/scripts/install-build-deps.sh @@ -45,7 +45,7 @@ done case $platform in Darwin) cmd="brew install" - pkgs="openssl@1.1" + pkgs="openssl@3.0" ;; Linux-ubuntu*) cmd="apt-get install --no-install-recommends -y"