From 3fa24c67313e3f081112fd6adbf7a7cf4a0396bd Mon Sep 17 00:00:00 2001 From: Kensei Sakai <24488142+libnumafly@users.noreply.github.com> Date: Mon, 23 Nov 2020 21:22:29 +0900 Subject: [PATCH] update Install requirements on macOS Ruby-based Homebrew installer is deprecated by original authors, and replaced Bash-based Installer. (ref1: https://github.com/Homebrew/install/blob/master/README.md ) (ref2: https://github.com/Homebrew/install/commit/26806377779aedfddcb1f0cbdf1416e865b9750a#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5 ) note: /Homebrew/install/master/install also runs Bash-based installer now. --- src/BUILD_UNIX.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BUILD_UNIX.md b/src/BUILD_UNIX.md index 51e715d3..d0a032e7 100644 --- a/src/BUILD_UNIX.md +++ b/src/BUILD_UNIX.md @@ -43,7 +43,7 @@ sudo apt -y install cmake gcc g++ libncurses5-dev libreadline-dev libssl-dev mak ## Install requirements on macOS ```bash -/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" brew install cmake openssl readline ```