Skip to content

Commit

Permalink
Fix typo in command to log pip-diff failure
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cjolowicz committed Sep 25, 2019
1 parent ff42f31 commit 0c701de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/steps/pip-uninstall
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c701de

Please sign in to comment.