From 8740fcdbad4d16663e71673f3bf9470dc456b52a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Fri, 1 Aug 2014 16:49:08 -0400 Subject: [PATCH] bugfix! --- bin/steps/pylibmc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bin/steps/pylibmc b/bin/steps/pylibmc index 33aa7fde..75fad3ae 100755 --- a/bin/steps/pylibmc +++ b/bin/steps/pylibmc @@ -19,7 +19,6 @@ bpwatch start pylibmc_install # If pylibmc exists within requirements, use vendored libmemcached. if (pip-grep -s requirements.txt pylibmc) then - cd .heroku if [ -d "vendor/lib/sasl2" ]; then export LIBMEMCACHED=$(pwd)/vendor @@ -28,11 +27,9 @@ if (pip-grep -s requirements.txt pylibmc) then mkdir -p .heroku/vendor # Download and extract libmemcached into target vendor directory. curl $VENDORED_MEMCACHED -s | tar zxv -C .heroku/vendor &> /dev/null - ls -l .heroku/vendor + export LIBMEMCACHED=$(pwd)/vendor fi - - cd .. fi bpwatch stop pylibmc_install -- GitLab