mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
10 lines
161 B
Bash
Executable File
10 lines
161 B
Bash
Executable File
#!/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
|