ray/thirdparty/download_thirdparty.sh

15 lines
311 B
Bash
Raw Normal View History

2016-05-16 09:29:50 -07:00
#!/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"
# this seems to be neeccessary for building on Mac OS X
cd grpc
git submodule update --init --recursive
cd ..