Github user wardbekker commented on a diff in the pull request:
https://github.com/apache/metron/pull/930#discussion_r166752027
--- Diff: metron-deployment/amazon-ec2/README.md ---
@@ -41,11 +50,13 @@ Any platform that supports these tools is suitable, but
the following instructio
/usr/bin/ruby -e "$(curl -fsSL
https://raw.githubusercontent.com/Homebrew/install/master/install)"
```
-2. With Homebrew installed, run the following command in a terminal to
install all of the required tools.
+2. With Homebrew installed, run the following command in a terminal to
install all of the required tools and dependencies.
```
- brew cask install java
- brew install maven git
+ brew update
--- End diff --
`brew update` is effectively the same as `apt-get update`. It doesn't
upgrade all installed packages.
---