From 433570c27b50e264fdf253277979fe5ac15bfbdd Mon Sep 17 00:00:00 2001 From: Alex Gaynor <alex.gaynor@gmail.com> Date: Tue, 16 Feb 2016 08:17:11 -0500 Subject: [PATCH] Fixed some broken comments --- bin/steps/cryptography | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/steps/cryptography b/bin/steps/cryptography index aa3b0107..8a7372a5 100755 --- a/bin/steps/cryptography +++ b/bin/steps/cryptography @@ -9,7 +9,7 @@ # # This script is invoked by [`bin/compile`](/). -# The location of the pre-compiled cryptography binary. +# The location of the pre-compiled libffi binary. VENDORED_LIBFFI="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/libffi.tar.gz" PKG_CONFIG_PATH="/app/.heroku/vendor/lib/pkgconfig:$PKG_CONFIG_PATH" @@ -19,7 +19,7 @@ source $BIN_DIR/utils bpwatch start libffi_install -# If pylibmc exists within requirements, use vendored cryptography. +# If a package using cffi exists within requirements, use vendored libffi. if (pip-grep -s requirements.txt bcrypt cffi cryptography pyOpenSSL PyOpenSSL requests[security] &> /dev/null) then if [ -d ".heroku/vendor/lib/libffi-3.1.1" ]; then @@ -27,7 +27,7 @@ if (pip-grep -s requirements.txt bcrypt cffi cryptography pyOpenSSL PyOpenSSL re else echo "-----> Noticed cffi. Bootstrapping libffi." mkdir -p .heroku/vendor - # Download and extract cryptography into target vendor directory. + # Download and extract libffi into target vendor directory. curl $VENDORED_LIBFFI -s | tar zxv -C .heroku/vendor &> /dev/null export LIBFFI=$(pwd)/vendor -- GitLab