ray/thirdparty/download_thirdparty.sh
Stephanie Wang b6872182bf Add hiredis to build (#395)
* Add hiredis to build

* make hiredis build if ray has been cloned before this commit
2016-09-01 20:15:00 -07:00

15 lines
372 B
Bash
Executable file

#!/bin/bash
set -x
set -e
TP_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
git submodule update --init --recursive -- "$TP_DIR/arrow"
git submodule update --init --recursive -- "$TP_DIR/numbuf"
git submodule update --init --recursive -- "$TP_DIR/hiredis"
# this seems to be neeccessary for building on Mac OS X
cd grpc
git submodule update --init --recursive
cd ..