From 63f75487633bebeb0efec689298ef8edb1f5c8a2 Mon Sep 17 00:00:00 2001 From: mehrdadn Date: Thu, 7 Jul 2016 10:22:36 +0300 Subject: [PATCH] Fix wrong branch to checkout (and do recursively if possible) (#226) --- thirdparty/download_thirdparty.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/download_thirdparty.bat b/thirdparty/download_thirdparty.bat index fc0c1b9c55599..0bc60b558b0c4 100644 --- a/thirdparty/download_thirdparty.bat +++ b/thirdparty/download_thirdparty.bat @@ -2,7 +2,7 @@ @PushD "%~dp0" git submodule update --init @If Not Exist "grpc\.git" git clone "https://github.com/grpc/grpc" - @If Not Exist "arrow\.git" git clone "https://github.com/pcmoritz/arrow.git" --branch windows_support + @If Not Exist "arrow\.git" git clone "https://github.com/pcmoritz/arrow.git" --branch windows_with_submodules --recursive @If Not Exist "arrow\cpp\thirdparty\flatbuffers\.git" git clone "https://github.com/google/flatbuffers.git" "arrow/cpp/thirdparty/flatbuffers" @If Not Exist "arrow\cpp\thirdparty\parquet\.git" git clone "https://github.com/apache/parquet-cpp.git" "arrow/cpp/thirdparty/parquet" @If Not Exist "numbuf\.git" git clone "https://github.com/amplab/numbuf.git" --branch win