Jemalloc update script added.

This commit is contained in:
antirez
2014-06-21 15:18:33 +02:00
parent 9eb02c6a1e
commit f94d46ba9a
Vendored Executable
+9
View 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."