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
congqixia 2023-06-10 19:30:36 +08:00 committed by GitHub
parent e538540d0d
commit dacf8b305d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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