mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 18:54:58 +00:00
13 lines
172 B
Bash
Executable File
13 lines
172 B
Bash
Executable File
#!/bin/sh
|
|
rm -rf temp
|
|
mkdir temp
|
|
cd temp
|
|
git clone git://github.com/ezmobius/redis-rb.git
|
|
cd redis-rb
|
|
rm -rf .git
|
|
cd ..
|
|
cd ..
|
|
rm -rf ruby
|
|
mv temp/redis-rb ruby
|
|
rm -rf temp
|