mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
13 lines
168 B
Bash
Executable File
13 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
rm -rf temp
|
|
mkdir temp
|
|
cd temp
|
|
git clone git://github.com/nrk/redis-lua.git
|
|
cd redis-lua
|
|
rm -rf .git
|
|
cd ..
|
|
cd ..
|
|
rm -rf lua
|
|
mv temp/redis-lua lua
|
|
rm -rf temp
|