本文介绍了如何在capistrano中使用--trace运行rake?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望capistrano用--trace调用rake,以便弄清楚失败的原因。我该怎么做呢? set:rake'rake --trace'
不起作用。
I want capistrano to invoke rake with --trace so I can figure out why it's failing. How do I do this? set :rake 'rake --trace'
doesn't work.
推荐答案
我发现的最好方法是:
set :rake, "#{rake} --trace"
这样,您就不会覆盖 rake 变量。
This way you don't overwrite the rake variable.
例如,如果使用 bundler ,则此设置为:
For example if you use bundler this is set before to:
bundle exec rake
然后执行以下操作:
bundle exec rake --trace
这篇关于如何在capistrano中使用--trace运行rake?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!