0

在过去的六个月里,我一直在使用这些 buildpack,从来没有遇到过任何问题:

https://github.com/oortcloud/heroku-buildpack-meteorite
https://github.com/cwaring/heroku-buildpack-meteorite-phantomjs

现在,当我尝试推送我的应用程序时出现此错误:

    You must specify a Meteor version with --release when you work with this
    project. It was created from an unreleased Meteor checkout and doesn't
    have a version associated with it.

    You can permanently set a release for this project with 'meteor update'.
tar: /app/tmp/repo.git/.cache/bundle.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Exiting with failure status due to previous errors

 !     Push rejected, failed to compile Meteor app app

在安装 Meteor 和所有meteroite 软件包后立即发生错误。

我已将问题发布到 github

那么,在解决这个问题之前,任何人都可以推荐这些构建包的替代方案以供临时使用吗?

编辑:

要复制我的错误,请在终端中执行此操作:mrt create buildpack-test && cd buildpack-test/ && git init && heroku create --remote staging --stack cedar --buildpack https://github.com/oortcloud/heroku-buildpack-meteorite.git && git add -A && git commit -m 'Init' && git push staging master

4

1 回答 1

2

似乎与此问题相同 https://github.com/oortcloud/heroku-buildpack-meteorite/issues/13

我已经分叉了 buildpack 并将其修复为陨石 5.1 版,它似乎对我来说工作得很好

https://github.com/nate-strauser/heroku-buildpack-meteorite


更新:问题已解决,我已切换回官方构建包 - https://github.com/oortcloud/heroku-buildpack-meteorite

于 2013-06-24T13:47:29.627 回答