ray/thirdparty/download_thirdparty.sh

21 lines
375 B
Bash
Executable file

#!/bin/bash
set -x
set -e
TP_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
if [ ! -d arrow ]; then
echo "Fetching arrow"
git clone https://github.com/pcmoritz/arrow.git
cd arrow
git checkout static
cd ..
fi
git submodule update --init --recursive
# this seems to be neeccessary for building on Mac OS X
cd grpc
git submodule update --init --recursive
cd ..