mirror of
https://github.com/adulau/hashlookup-server.git
synced 2024-11-21 17:47:06 +00:00
13 lines
223 B
Bash
13 lines
223 B
Bash
#!/bin/sh
|
|
|
|
if [[ ! ./kvrocks ]]
|
|
then
|
|
git clone --recursive https://github.com/apache/incubator-kvrocks.git kvrocks
|
|
fi
|
|
cd kvrocks
|
|
git pull
|
|
git submodule update
|
|
#git checkout 2.0.1
|
|
#make -j4
|
|
mkdir build
|
|
./build.sh ./build
|