Skip to content
Snippets Groups Projects
Commit 329cd6eb authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

don't print extra information


Signed-off-by: default avatarKenneth Reitz <me@kennethreitz.org>
parent b6f042b1
No related branches found
No related tags found
No related merge requests found
...@@ -11,9 +11,9 @@ if [[ -f Pipfile.lock ]]; then ...@@ -11,9 +11,9 @@ if [[ -f Pipfile.lock ]]; then
if [[ $(openssl dgst -sha256 Pipfile.lock) == $(cat .heroku/python/Pipfile.lock.sha256) ]]; then if [[ $(openssl dgst -sha256 Pipfile.lock) == $(cat .heroku/python/Pipfile.lock.sha256) ]]; then
if [[ ! "$PIPENV_ALWAYS_INSTALL" ]]; then if [[ ! "$PIPENV_ALWAYS_INSTALL" ]]; then
echo "Skipping installation, as Pipfile.lock hasn't changed since last deploy." | indent echo "Skipping installation, as Pipfile.lock hasn't changed since last deploy." | indent
echo "To disable this functionality, run the following command:" # echo "To disable this functionality, run the following command:"
echo "" # echo ""
echo " $ heroku config:set PIPENV_ALWAYS_INSTALL=1" | indent # echo " $ heroku config:set PIPENV_ALWAYS_INSTALL=1" | indent
export SKIP_PIPENV_INSTALL=1 export SKIP_PIPENV_INSTALL=1
fi fi
...@@ -23,7 +23,6 @@ fi ...@@ -23,7 +23,6 @@ fi
if [ ! "$SKIP_PIPENV_INSTALL" ]; then if [ ! "$SKIP_PIPENV_INSTALL" ]; then
# Pipenv support (Generate requriements.txt with pipenv). # Pipenv support (Generate requriements.txt with pipenv).
if [[ -f Pipfile ]]; then if [[ -f Pipfile ]]; then
# Measure that we're using Pipenv. # Measure that we're using Pipenv.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment