当您拥有多个Heroku应用(即git遥控器)时,尝试set up deploy notifications to Airbrake on Heroku deploy rake airbrake:heroku:add_deploy_notification
将会产生:
! Multiple apps in folder and no app specified.
! Specify app with --app APP.
它显示为Airbrake are aware of this,但未提供真正的解决方案。
有解决方法吗?
答案 0 :(得分:1)
在运行rake airbrake:heroku:add_deploy_notification
之前,您可以git config heroku.remote
将staging
设置为所需的分支。
例如,要设置Heroku遥控器为production
和$ git config heroku.remote staging
$ rake airbrake:heroku:add_deploy_notification
$ git config heroku.remote production
$ rake airbrake:heroku:add_deploy_notification
$ git config --unset heroku.remote
的应用,您可以:
{{1}}
答案 1 :(得分:0)
A fix has now been pushed for this
您可以将环境变量HEROKU_APP
设置为应用名称。