mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
don't print extra information
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
+3
-4
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user