From eea9a7fd0f22c59dada0e9940a412e931af958bc Mon Sep 17 00:00:00 2001 From: Eric Carmichael Date: Wed, 23 Sep 2020 06:49:46 -0700 Subject: [PATCH] Fix code comment typo in bin/steps/pipenv (#1076) --- bin/steps/pipenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/pipenv b/bin/steps/pipenv index d5a5ba1..4f2600a 100755 --- a/bin/steps/pipenv +++ b/bin/steps/pipenv @@ -9,7 +9,7 @@ set -e if [[ -f Pipfile.lock ]]; then if [[ -f .heroku/python/Pipfile.lock.sha256 ]]; then if [[ $(openssl dgst -sha256 Pipfile.lock) == $(cat .heroku/python/Pipfile.lock.sha256) ]]; then - # Don't skip installation of there are git deps. + # Don't skip installation if there are git deps. if ! grep -q 'git' Pipfile.lock; then echo "Skipping installation, as Pipfile.lock hasn't changed since last deploy." | indent