mirror of https://github.com/tikv/client-java.git
This commit is contained in:
parent
09cb452c2e
commit
7a123a07e2
|
@ -31,6 +31,7 @@ cd "$TIKV_CLIENT_HOME" || exit
|
|||
|
||||
if [ -d "$kvproto_dir" ]; then
|
||||
git -C ${kvproto_dir} fetch -p
|
||||
git pull --all
|
||||
else
|
||||
git clone https://github.com/pingcap/kvproto ${kvproto_dir}
|
||||
fi
|
||||
|
@ -38,6 +39,7 @@ git -C ${kvproto_dir} checkout ${kvproto_hash}
|
|||
|
||||
if [ -d "$raft_rs_dir" ]; then
|
||||
git -C ${raft_rs_dir} fetch -p
|
||||
git pull --all
|
||||
else
|
||||
git clone https://github.com/pingcap/raft-rs ${raft_rs_dir}
|
||||
fi
|
||||
|
@ -45,6 +47,7 @@ git -C ${raft_rs_dir} checkout ${raft_rs_hash}
|
|||
|
||||
if [ -d "$tipb_dir" ]; then
|
||||
git -C ${tipb_dir} fetch -p
|
||||
git pull --all
|
||||
else
|
||||
git clone https://github.com/pingcap/tipb ${tipb_dir}
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue