Rake 任务:错误处理

发布于 2024-10-03 22:48:43 字数 227 浏览 0 评论 0原文

我还在学习Rake。

Rake 是否内置支持处理任务错误,如 NANT 的 MSBuild:如果此任务失败;执行另一个任务(回滚等),

例如:在 MSBuild 中,它们有 OnError 元素

<OnError ExecuteTargets="RollBackDatabase" />

感谢您的帮助

I am still learning Rake.

Does Rake has built in support to handle task's error like MSBuild of NANT: if this task failed; execute anoter tasks (rolling back, etc.)

e.g.: in MSBuild they have OnError element

<OnError ExecuteTargets="RollBackDatabase" />

Thanks for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蹲墙角沉默 2024-10-10 22:48:43

找到答案:

只需使用正常的异常处理块

task :will_fail_task do
  begin
    raise "something's wrong here"
  rescue
    rollback()
    raise "error executing task"
  end
end

Found out the answer:

just use normal exception handling block

task :will_fail_task do
  begin
    raise "something's wrong here"
  rescue
    rollback()
    raise "error executing task"
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文