From e2d5af3ddd2101d2a0159c3d702ba4530c7e370d Mon Sep 17 00:00:00 2001 From: quyleanh Date: Fri, 2 Apr 2021 20:47:37 +0700 Subject: [PATCH] update `brew` command `brew cask` was deprecated according to [this comment](https://github.com/Homebrew/discussions/discussions/340#discussioncomment-232364). Should be `brew install`. --- BUILD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.md b/BUILD.md index f20d5921..2ca08173 100644 --- a/BUILD.md +++ b/BUILD.md @@ -208,7 +208,7 @@ make it avaliable from the `PATH`: ```bash brew tap homebrew/cask-versions -brew cask install adoptopenjdk/openjdk/adoptopenjdk8 +brew install adoptopenjdk/openjdk/adoptopenjdk8 export JAVA_HOME="$(/usr/libexec/java_home --version 1.8)" export PATH="$JAVA_HOME/bin:$PATH" ```