2
A
回答
1
不幸的是沒有--keep-going
在rake
(我認爲這很好)。我能想到的唯一方法是用begin; rescue; end
包裝你的Rakefile,但它不會讓它「繼續前進」 - 它只會確保你的rake
的執行返回值是0
。
begin
# Former Rakefile code goes here
rescue
puts $!.inspect
end
我相信,「堅持下去」是不可能的,因爲當你raise
東西,你已經改變了算法的流程 - 即不要試圖忽視例外解決您的問題。
相關問題
- 1. 在matlab中等價於diag(x,k)
- 2. make -k with Android NDK
- 3. 在Python中是否有Rake等價物?
- 4. Rake的'sh'等於Jake嗎?
- 5. 等價於BN_hex2bn
- 6. 等價於getbounds
- 7. Rake:自動刪除中間文件? (對make .INTERMEDIATE機制等效?)
- 8. `expect_any_instance_of`等價於PHPUnit
- 9. C++等價於Tidy
- 10. Scala等價於java.util.Collection?
- 11. iPad等價於onmousemove?
- 12. WPF等價於ActiveControl?
- 13. SizeToContent等價於WinForm?
- 14. jconsole等價於.Net?
- 15. Scala等價於pyTables?
- 16. Java等價於IntPtr.ZERO?
- 17. C++等價於SerializeWithLengthPrefix
- 18. Python等價於bwmorph
- 19. JAXB等價於@Mappedsuperclass
- 20. WPF等價於TextRenderer
- 21. xmlseealso等價於Simplexml
- 22. iOS等價於SecTransformRef?
- 23. jquery等價於form.field_name?
- 24. BorderLayout.CENTER等價於SWT?
- 25. JVMTI等價於.NET
- 26. java等價於mkstemp
- 27. IPAddress.HostToNetworkOrder()等價於WinRT?
- 28. jQuery等價於querySelector
- 29. GLSL等價於sampler_state?
- 30. fromCharCode等價於Ruby
用@jmonteiro建議的類似方式解決了我的問題: rule'.o'=> ['.c'] do | t | begin sh「cc#{t.source} -c -o#{t.name}」 rescue RuntimeError => e if keep_going? next 0 else raise e end end end – hausen 2012-02-23 16:07:21