In a new shell (heroku run bash), the contents of .buildpack appear fine. Upon running build, the contents of .buildpack are changed to the buildpack-multi code and the build fails.
I looks like you might be specifically looking at BUILDPACK_URL rather than just running the git reset in the directory as-is (which has the correct remote).
As a workaround, setting BUILDPACK_NO_SELF_UPDATE=1 works.
Project: https://github.com/thoughtbot/carnival. Uses https://github.com/ddollar/heroku-buildpack-multi.
In a new shell (
heroku run bash
), the contents of.buildpack
appear fine. Upon runningbuild
, the contents of.buildpack
are changed to the buildpack-multi code and the build fails.Here's a complete log: http://sprunge.us/FMfL
Here are the interesting lines:
I looks like you might be specifically looking at
BUILDPACK_URL
rather than just running the git reset in the directory as-is (which has the correct remote).As a workaround, setting
BUILDPACK_NO_SELF_UPDATE=1
works.