Fix code comment typo in bin/steps/pipenv (#1076)

This commit is contained in:
Eric Carmichael
2020-09-23 06:49:46 -07:00
committed by GitHub
parent 215a3e3670
commit eea9a7fd0f
+1 -1
View File
@@ -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