mirror of https://github.com/milvus-io/milvus.git
Fix list milvus-proto go.mod when try to parse API_VERSION (#24788)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/24896/head
parent
e538540d0d
commit
dacf8b305d
|
@ -2,13 +2,13 @@
|
|||
|
||||
SCRIPTS_DIR=$(dirname "$0")
|
||||
THIRD_PARTY_DIR=$SCRIPTS_DIR/../cmake_build/thirdparty
|
||||
API_VERSION=$(go list -m github.com/milvus-io/milvus-proto/go-api/v2 | awk -F' ' '{print $2}')
|
||||
|
||||
if [ ! -d "$THIRD_PARTY_DIR/milvus-proto" ]; then
|
||||
mkdir -p $THIRD_PARTY_DIR
|
||||
pushd $THIRD_PARTY_DIR
|
||||
git clone https://github.com/milvus-io/milvus-proto.git
|
||||
cd milvus-proto
|
||||
API_VERSION=$(go list -m github.com/milvus-io/milvus-proto/go-api/v2 | awk -F' ' '{print $2}')
|
||||
# try tagged version first
|
||||
COMMIT_ID=$(git ls-remote https://github.com/milvus-io/milvus-proto.git refs/tags/${API_VERSION} | cut -f 1)
|
||||
if [[ -z $COMMIT_ID ]]; then
|
||||
|
|
Loading…
Reference in New Issue