This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new 625fc5b fix: update Homebrew commands (#5081)
625fc5b is described below
commit 625fc5b7593360bc01e74147c02ce5f1461b5cd3
Author: John Bampton <[email protected]>
AuthorDate: Mon Mar 15 05:33:16 2021 +1000
fix: update Homebrew commands (#5081)
- brew cask install -> brew install --cask
- brew tap caskroom/cask -> brew tap homebrew/cask
---
tools/macos/README.md | 2 +-
tools/macos/docker-machine/README.md | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/tools/macos/README.md b/tools/macos/README.md
index 12271e5..49989cb 100644
--- a/tools/macos/README.md
+++ b/tools/macos/README.md
@@ -47,7 +47,7 @@ brew tap homebrew/cask
# install for AdoptOpenJDK (java10)
brew tap AdoptOpenJDK/openjdk
# install java 10
-brew cask install adoptopenjdk10
+brew install --cask adoptopenjdk10
# install scala
brew install scala
# install gnu tar
diff --git a/tools/macos/docker-machine/README.md
b/tools/macos/docker-machine/README.md
index ed7f63f..b77d605 100644
--- a/tools/macos/docker-machine/README.md
+++ b/tools/macos/docker-machine/README.md
@@ -19,7 +19,7 @@
# Setting up OpenWhisk with Docker-machine
-OpenWhisk can on a Mac using a virtual machine in which Docker daemon is
running.
+OpenWhisk can run on a Mac using a virtual machine in which Docker daemon is
running.
You will make provision of a virtual machine with Docker-machine and
communicate with them via Docker remote API.
# Prerequisites
@@ -43,15 +43,15 @@ echo '
# install homebrew
/usr/bin/ruby -e "$(curl -fsSL
https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install cask
-brew tap caskroom/cask
+brew tap homebrew/cask
# install virtualbox
-brew cask install virtualbox
+brew install --cask virtualbox
# install docker 1.12.0
brew install
https://raw.githubusercontent.com/Homebrew/homebrew-core/33301827c3d770bfd49f0e50d84e0b125b06b0b7/Formula/docker.rb
# install docker-machine
brew install docker-machine
# install java 8
-brew cask install java
+brew install --cask java
# install scala
brew install scala
# install gnu tar