mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
14 lines
311 B
Bash
Executable file
14 lines
311 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"
|
|
|
|
# this seems to be neeccessary for building on Mac OS X
|
|
cd grpc
|
|
git submodule update --init --recursive
|
|
cd ..
|