2
我有一些在我的Rakefile文件的任務看起來像救援耙任務
file 'task1' => 'dep' do
sh "some command"
end
還有
task :start => :next
task :last => :dep2
我在想,如果有救它放在頂層的一種方式,即說
begin
task :last => :dep2
rescue
# do something
end
而不是在每個file
做任務
file 'task1' => 'dep' do
begin
sh "some command"
rescue
# do something
end
end
這可能嗎?
再次感謝,你是否知道任何方法來鉤入渲染堆棧跟蹤或類似的函數? – ecoologic 2015-01-12 05:16:22