mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 00:50:50 +00:00
13 lines
181 B
Bash
Executable File
13 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
rm -rf temp
|
|
mkdir temp
|
|
cd temp
|
|
git clone git://github.com/acrosa/scala-redis.git
|
|
cd scala-redis
|
|
rm -rf .git
|
|
cd ..
|
|
cd ..
|
|
rm -rf scala
|
|
mv temp/scala-redis scala
|
|
rm -rf temp
|