mirror of
https://github.com/fluencelabs/redis
synced 2025-07-23 20:41:56 +00:00
deps
hiredis
jemalloc
linenoise
lua
Makefile
README.md
update-jemalloc.sh
src
tests
utils
.gitignore
00-RELEASENOTES
BUGS
CONTRIBUTING
COPYING
INSTALL
MANIFESTO
Makefile
README.md
redis.conf
runtest
runtest-cluster
runtest-sentinel
sentinel.conf
10 lines
282 B
Bash
10 lines
282 B
Bash
![]() |
#!/bin/bash
|
||
|
VER=$1
|
||
|
URL="http://www.canonware.com/download/jemalloc/jemalloc-${VER}.tar.bz2"
|
||
|
echo "Downloading $URL"
|
||
|
curl $URL > /tmp/jemalloc.tar.bz2
|
||
|
tar xvjf /tmp/jemalloc.tar.bz2
|
||
|
rm -rf jemalloc
|
||
|
mv jemalloc-${VER} jemalloc
|
||
|
echo "Use git status, add all files and commit changes."
|