mirror of
https://github.com/redis/redis.git
synced 2026-06-11 01:40:25 -04:00
Jemalloc update script added.
This commit is contained in:
parent
22d17bc14f
commit
fe596d67e3
1 changed files with 9 additions and 0 deletions
9
deps/update-jemalloc.sh
vendored
Executable file
9
deps/update-jemalloc.sh
vendored
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/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."
|
||||
Loading…
Reference in a new issue