public
Description: New development on the Ruby bindings for the GNU Scientific Library
Clone URL: git://github.com/codahale/ruby-gsl.git
Make rake compile fail if the build fails.
codahale (author)
Tue Feb 26 01:25:08 -0800 2008
commit  eac3032a8c6e6505b709fd3b9f2f771aa27fa564
tree    3aaba26c9735157a538fc75fc9de426e4fac5b9f
parent  29523247ad9ca964127be051339a367bf010c9ae
...
18
19
20
 
 
 
21
22
23
...
18
19
20
21
22
23
24
25
26
0
@@ -18,5 +18,8 @@ desc "Compile the extension."
0
 task :compile do
0
   Dir.chdir('./ext')
0
   system "make"
0
+ if $?.exitstatus != 0
0
+ exit(1)
0
+ end
0
   Dir.chdir("..")
0
 end
0
\ No newline at end of file

Comments

    No one has commented yet.