1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-07-19 05:19:40 +02:00

Update install.sh

This commit is contained in:
Didier Barzin 2025-02-11 20:42:40 +01:00 committed by GitHub
parent 77e2071c30
commit 1e9d082421
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,13 +48,13 @@ 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 ..
chown -R $SUDO_USER valkey
fi
#---------------------
@ -65,11 +65,11 @@ 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 ..
chown -R $SUDO_USER kvrocks
fi
#---------------------