From 329cd6eb7b7de1edadcf899c445ba7d0cfaae0c8 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Wed, 7 Mar 2018 10:56:49 -0500 Subject: [PATCH] don't print extra information Signed-off-by: Kenneth Reitz <me@kennethreitz.org> --- bin/steps/pipenv | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/steps/pipenv b/bin/steps/pipenv index ec7686e3..3bf5674b 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. -- GitLab