From f3babdbabb8c42a91d0b15a96b250c5ce19291a7 Mon Sep 17 00:00:00 2001 From: Didier Date: Thu, 27 Apr 2023 13:35:58 +0200 Subject: [PATCH] fix test --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index b743669..5deee22 100755 --- a/install.sh +++ b/install.sh @@ -48,11 +48,11 @@ apt install -y build-essential tcl if [ -d "redis" ]; then + cd redis + else git clone https://github.com/redis/redis.git cd redis git checkout 6.2 - else - cd redis fi make # Optionally, you can run the tests: @@ -69,11 +69,11 @@ apt install -y gcc g++ make libsnappy-dev autoconf automake libtool googletest l if [ -d "kvrocks" ]; then + cd kvrocks + else git clone --recursive https://github.com/apache/incubator-kvrocks.git kvrocks cd kvrocks git checkout 2.0 - else - cd kvrocks fi make -j4 # Optionally, you can run the tests: