mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
16 lines
317 B
Bash
Executable File
16 lines
317 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function line()
|
|
{
|
|
echo "----------------------------"
|
|
}
|
|
|
|
line
|
|
echo "Get the latest commitID"
|
|
commitID=`git rev-parse --short HEAD`
|
|
echo $commitID
|
|
|
|
line
|
|
echo "Update the milvus/api version"
|
|
go mod edit -dropreplace=github.com/milvus-io/milvus/api
|
|
go get github.com/milvus-io/milvus/api@$commitID |