diff --git a/README.md b/README.md index 842214db4..6c5c09006 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,20 @@ Install minio packages using [Homebrew](http://brew.sh/) brew install minio/stable/minio minio server ~/Photos ``` -Note: If you are upgrading minio on macOS, please see instructions [here](https://github.com/minio/minio/blob/master/docs/minio_homebrew.md). +#### Note +If you previously installed minio using `brew install minio` then uninstall minio as shown below + +``` +brew uninstall minio +``` + +Then re-install the latest minio using: + +``` +brew install minio/stable/minio +``` + +>`brew install minio` and `brew upgrade minio` will no longer install/upgrade the latest minio binaries on macOS. Upstream bugs in golang 1.8 broke Minio brew installer. Use the updated `minio/stable/minio` in your brew paths. ### Binary Download | Platform| Architecture | URL| diff --git a/docs/minio_homebrew.md b/docs/minio_homebrew.md deleted file mode 100644 index 3d3b51c72..000000000 --- a/docs/minio_homebrew.md +++ /dev/null @@ -1,35 +0,0 @@ -# Minio Installation on macOS - -## Fresh Install - -Install Minio on macOS via brew. - -``` -brew install minio/stable/minio -minio server ~/Photos -``` - -## Upgrade - -Step 1: Uninstall minio if you installed it using `brew install minio` - -``` -brew uninstall minio -``` -Step 2: Fresh Install using new path - -Once you remove minio completely from your system, proceed to do : - -``` -brew install minio/stable/minio -``` - -## Important Breaking Change - -#### Installation Path Changes for minio in brew - -> `brew upgrade minio` and `brew install minio` commands will no longer install the latest minio binaries on macOS. Use `brew install minio/stable/minio` in all your brew paths. - -Upstream bugs in golang 1.8 broke Minio brew installer. We will re-enable minio installation on macOS via `brew install minio` at a later date. - -