我有一个rake任务,我希望这个任务总是通过/成功/永远不会失败。
这有用吗?
task :myraketask do
begin
mytask detail
rescue Exception => e
put "to catch any exception: #{e.message}"
end
end
答案 0 :(得分:0)
根据以下内容,我会说你是对的。
begin
1/0
rescue
puts "not failing :)"
end