Skip to content

Instantly share code, notes, and snippets.

@bennylope
Last active August 29, 2015 14:04
Show Gist options
  • Save bennylope/0e01a8ffef65374e5e0c to your computer and use it in GitHub Desktop.
Save bennylope/0e01a8ffef65374e5e0c to your computer and use it in GitHub Desktop.
# If pylibmc exists within requirements, use vendored libmemcached.
if (grep -Eiq "\s*pylibmc" requirements.txt) then
echo "-----> Noticed pylibmc. Bootstrapping libmemcached."
cd .heroku
if [ -d "vendor/lib/sasl2" ]; then
export LIBMEMCACHED=$(pwd)/vendor
else
# Download and extract libmemcached into target vendor directory.
curl -s -L -o tmp-libmemcached.tar.gz $VENDORED_MEMCACHED
tar -zxvf tmp-libmemcached.tar.gz > /dev/null
rm tmp-libmemcached.tar.gz
export LIBMEMCACHED=$(pwd)/vendor
fi
export LIBMEMCACHED=$(pwd)/vendor
cd ..
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment