You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by uw...@apache.org on 2019/03/31 17:17:41 UTC

[parquet-mr] branch master updated: Correct brew formula for thirft (#626)

This is an automated email from the ASF dual-hosted git repository.

uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git


The following commit(s) were added to refs/heads/master by this push:
     new c5561be  Correct brew formula for thirft (#626)
c5561be is described below

commit c5561becfbc17bb1643e24faed87424a612ea7f1
Author: archgroove <ar...@users.noreply.github.com>
AuthorDate: Mon Apr 1 04:17:36 2019 +1100

    Correct brew formula for thirft (#626)
    
    brew formula for thrift is `brew install thrift@0.12` not thrift@0.12.0
    see https://formulae.brew.sh/formula/thrift
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index c93adba..f670e41 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ sudo make install
 If you're on OSX and use homebrew, you can instead install Thrift 0.12.0 with `brew` and ensure that it comes first in your `PATH`.
 
 ```
-brew install thrift@0.12.0
+brew install thrift@0.12
 export PATH="/usr/local/opt/thrift@0.12.0/bin:$PATH"
 ```