mirror of
https://github.com/wassname/ray.git
synced 2026-07-23 13:10:11 +08:00
15 lines
311 B
Bash
Executable File
15 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 ..
|