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