mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 18:54:58 +00: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
|