mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-06 19:02:18 +08:00
14 lines
254 B
Bash
14 lines
254 B
Bash
#!/usr/bin/env bash
|
|
|
|
SCRIPTS_DIR=$(dirname "$0")
|
|
THIRD_PARTY_DIR=$SCRIPTS_DIR/../cmake_build/thirdparty/
|
|
|
|
mkdir -p $THIRD_PARTY_DIR
|
|
|
|
pushd $THIRD_PARTY_DIR
|
|
|
|
rm -rf milvus-proto
|
|
|
|
git clone -b $GIT_BRANCH https://github.com/milvus-io/milvus-proto.git
|
|
|
|
popd |