mirror of
https://github.com/wassname/ray.git
synced 2026-07-31 12:41:01 +08:00
* Add hiredis to build * make hiredis build if ray has been cloned before this commit
16 lines
372 B
Bash
Executable File
16 lines
372 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"
|
|
git submodule update --init --recursive -- "$TP_DIR/hiredis"
|
|
|
|
# this seems to be neeccessary for building on Mac OS X
|
|
cd grpc
|
|
git submodule update --init --recursive
|
|
cd ..
|