From 3329f4ab9b7761eeced8e37b2d57fea641d090d1 Mon Sep 17 00:00:00 2001 From: BinacsLee Date: Mon, 11 Jan 2021 23:50:18 +0800 Subject: [PATCH] [scripts/install_deps.sh] support MacOS Big Sur --- scripts/install_deps.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 0312db4b3..fbe0061d5 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -93,9 +93,12 @@ case $(uname -s) in 10.15) echo "Installing solidity dependencies on macOS 10.15 Catalina." ;; + 11.0 | 11.1) + echo "Installing solidity dependencies on macOS 11.0 / 11.1 Big Sur." + ;; *) echo "Unsupported macOS version." - echo "We only support Mavericks, Yosemite, El Capitan, Sierra, High Sierra, Mojave, and Catalina." + echo "We only support Mavericks, Yosemite, El Capitan, Sierra, High Sierra, Mojave, Catalina, and Big Sur." exit 1 ;; esac