12

heroku-buildpack-php-tyler几天前我在我的 Heroku 应用上安装了,一切似乎都运行良好。我通过运行以下命令安装了它:

heroku config:set BUILDPACK_URL=git://github.com/iphoting/heroku-buildpack-php-tyler.git

但是我现在想删除它。我尝试使用以下命令:

heroku config:unset BUILDPACK_URL=git://github.com/iphoting/heroku-buildpack-php-tyler.git

但它返回以下错误消息:

取消设置 BUILDPACK_URL=git://github.com/iphoting/heroku-buildpack-php-tyler.git 并重新启动 hnf-heroku... 失败

!找不到资源`

因为Heroku 没有正式支持PHP,所以没有太多关于此的文档。那么如何卸载这个 buildpack 呢?

4

3 回答 3

30

heroku(撰写本文时为 v3.1.0)的当前版本中,您可以使用heroku buildpacks:remove [BUILDPACK_URL]

键入heroku buildpacks help列出了可用的命令:

  buildpacks:add BUILDPACK_URL       #  add new app buildpack, inserting into list of buildpacks if neccessary
  buildpacks:clear                   #  clear all buildpacks set on the app
  buildpacks:remove [BUILDPACK_URL]  #  remove a buildpack set on the app
  buildpacks:set BUILDPACK_URL       #  set new app buildpack, overwriting into list of buildpacks if neccessary
于 2015-05-13T00:31:28.300 回答
17

尝试:

heroku config:unset BUILDPACK_URL
于 2014-05-04T06:25:07.170 回答
4

跑步heroku config:unsetheroku buildpacks:remove没有为我工作。但是,简单地运行heroku buildpacks:clear确实会将所有内容恢复到默认状态。然后,在 nextgit push heroku中,会即时添加适当的 buildpack。

于 2017-06-03T21:14:29.637 回答