mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 17:10:50 +00:00
10 lines
161 B
Bash
10 lines
161 B
Bash
|
#!/bin/sh
|
||
|
rm -rf temp
|
||
|
mkdir temp
|
||
|
cd temp
|
||
|
git clone git://github.com/ludoo/redis.git
|
||
|
cd ..
|
||
|
rm -rf python
|
||
|
mv temp/redis/client-libraries/python python
|
||
|
rm -rf temp
|