diff --git a/bin/steps/pipenv b/bin/steps/pipenv index ec7686e33690177cfae2bbe8de05510aff1a01c4..3bf5674bb23b6e0b2661168250ee00dad82ca367 100755 --- a/bin/steps/pipenv +++ b/bin/steps/pipenv @@ -11,9 +11,9 @@ if [[ -f Pipfile.lock ]]; then if [[ $(openssl dgst -sha256 Pipfile.lock) == $(cat .heroku/python/Pipfile.lock.sha256) ]]; then if [[ ! "$PIPENV_ALWAYS_INSTALL" ]]; then echo "Skipping installation, as Pipfile.lock hasn't changed since last deploy." | indent - echo "To disable this functionality, run the following command:" - echo "" - echo " $ heroku config:set PIPENV_ALWAYS_INSTALL=1" | indent + # echo "To disable this functionality, run the following command:" + # echo "" + # echo " $ heroku config:set PIPENV_ALWAYS_INSTALL=1" | indent export SKIP_PIPENV_INSTALL=1 fi @@ -23,7 +23,6 @@ fi if [ ! "$SKIP_PIPENV_INSTALL" ]; then - # Pipenv support (Generate requriements.txt with pipenv). if [[ -f Pipfile ]]; then # Measure that we're using Pipenv.