From 77e2071c30bdb4843b3c3ef83558b3eedb90d860 Mon Sep 17 00:00:00 2001 From: Didier Barzin Date: Tue, 11 Feb 2025 20:40:19 +0100 Subject: [PATCH] Update install.sh --- install.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/install.sh b/install.sh index 978fbe3..b1da84e 100755 --- a/install.sh +++ b/install.sh @@ -48,15 +48,14 @@ apt install -y build-essential tcl pkg-config if [ ! -d "valkey" ]; then git clone https://github.com/valkey-io/valkey.git + chown -R $SUDO_USER valkey cd valkey git checkout 8.0 make -j 4 + # Optionally, you can run the tests: + # make test cd .. fi -# Optionally, you can run the tests: -# make test - -chown -R $SUDO_USER valkey #--------------------- # Kvrocks @@ -66,14 +65,13 @@ apt install -y git gcc g++ make cmake autoconf automake libtool python3 libssl-d if [ ! -d "kvrocks" ]; then git clone --recursive https://github.com/apache/incubator-kvrocks.git kvrocks + chown -R $SUDO_USER kvrocks cd kvrocks git checkout 2.10 ./x.py build cd .. fi -chown -R $SUDO_USER kvrocks - #--------------------- # Pandora #---------------------