From 0c701de466955e9d52a56a46dda30ddd8c096358 Mon Sep 17 00:00:00 2001 From: Claudio Jolowicz Date: Thu, 22 Aug 2019 13:17:03 +0200 Subject: [PATCH 1/2] 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 682b2c9..2e1ad8d 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 From 6e4b43fa1dde25ec9187701cd218ebaee89d965c Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Fri, 27 Sep 2019 14:09:30 -0700 Subject: [PATCH 2/2] add changelog update to retrigger tests --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76e6fd3..c620740 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ # Master +Typo fixes + -------------------------------------------------------------------------------- # 156 (2019-09-12)