Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update Homebrew commands #5081

Merged
merged 1 commit into from
Mar 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/macos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions tools/macos/docker-machine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down