From 2d929ad93811cb3e72cb8b90090fae0267e74066 Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Wed, 27 Jul 2016 19:14:40 -0700 Subject: [PATCH] Only check out submodules that are actually used (#310) --- thirdparty/download_thirdparty.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thirdparty/download_thirdparty.sh b/thirdparty/download_thirdparty.sh index 02fa10af3..0244777f0 100755 --- a/thirdparty/download_thirdparty.sh +++ b/thirdparty/download_thirdparty.sh @@ -5,7 +5,8 @@ set -e TP_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd) -git submodule update --init --recursive +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