mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
13 lines
195 B
Bash
Executable File
13 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
rm -rf temp
|
|
mkdir temp
|
|
cd temp
|
|
git clone git://github.com/fictorial/redis-cpp-client.git
|
|
cd redis-cpp-client
|
|
rm -rf .git
|
|
cd ..
|
|
cd ..
|
|
rm -rf cpp
|
|
mv temp/redis-cpp-client cpp
|
|
rm -rf temp
|