mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
14 lines
221 B
Bash
Executable File
14 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
rm -rf temp
|
|
mkdir temp
|
|
cd temp
|
|
git clone git://github.com/ezmobius/redis-rb.git
|
|
#git clone git://github.com/jodosha/redis-rb.git
|
|
cd redis-rb
|
|
rm -rf .git
|
|
cd ..
|
|
cd ..
|
|
rm -rf ruby
|
|
mv temp/redis-rb ruby
|
|
rm -rf temp
|