Add OSX install script (#1947)

* Add OSX install script

* Address PR comments
This commit is contained in:
Jack Zampolin 2018-07-11 03:47:59 -07:00 committed by Anton Kaliaev
parent f9ae7730fe
commit a3640ef809
1 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
#!/usr/bin/env bash
# XXX: this script is intended to be run from
# an MacOS machine
# as written, this script will install
# tendermint core from master branch
REPO=github.com/tendermint/tendermint
# change this to a specific release or branch
BRANCH=master
if ! [ -x "$(command -v brew)" ]; then
echo 'Error: brew is not installed, to install brew' >&2
echo 'follow the instructions here: https://docs.brew.sh/Installation' >&2
exit 1
fi
if ! [ -x "$(command -v go)" ]; then
echo 'Error: go is not installed, to install go follow' >&2
echo 'the instructions here: https://golang.org/doc/install#tarball' >&2
echo 'ALSO MAKE SURE TO SETUP YOUR $GOPATH and $GOBIN in your ~/.profile: https://github.com/golang/go/wiki/SettingGOPATH' >&2
exit 1
fi
if ! [ -x "$(command -v make)" ]; then
echo 'Make not installed, installing using brew...'
brew install make
fi
# get the code and move into repo
go get $REPO
cd $GOPATH/src/$REPO
# build & install
git checkout $BRANCH
# XXX: uncomment if branch isn't master
# git fetch origin $BRANCH
make get_tools
make get_vendor_deps
make install