mirror of
https://github.com/wassname/ray.git
synced 2026-08-01 12:51:09 +08:00
7 lines
164 B
Bash
7 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
|