From 0c701de466955e9d52a56a46dda30ddd8c096358 Mon Sep 17 00:00:00 2001 From: Claudio Jolowicz Date: Thu, 22 Aug 2019 13:17:03 +0200 Subject: [PATCH] Fix typo in command to log pip-diff failure The pip-diff tool from vendor/pip-pop is used to determine stale requirements. When pip-diff encounters an unexpected failure, a count is logged using mcount from heroku/buildpack-stdlib. Due to a typo, mount(8) was invoked instead of mcount, with an invalid argument. --- bin/steps/pip-uninstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/pip-uninstall b/bin/steps/pip-uninstall index 682b2c93c..2e1ad8db7 100755 --- a/bin/steps/pip-uninstall +++ b/bin/steps/pip-uninstall @@ -13,7 +13,7 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then if ! pip-diff --stale requirements-declared.txt requirements.txt --exclude setuptools pip wheel > .heroku/python/requirements-stale.txt; then - mount "failure.bad-requirements" + mcount "failure.bad-requirements" fi rm -fr requirements-declared.txt