mirror of
https://github.com/vale981/ray
synced 2025-03-13 06:36:39 -04:00
6 lines
164 B
Bash
6 lines
164 B
Bash
if [ ! -f redis-3.2.3/src/redis-server ]; then
|
|
wget http://download.redis.io/releases/redis-3.2.3.tar.gz
|
|
tar xvfz redis-3.2.3.tar.gz
|
|
cd redis-3.2.3
|
|
make
|
|
fi
|