mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
21 lines
375 B
Bash
Executable file
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 ..
|