Hi All,
Could you tell me how I could do to have rake to run all the tasks no
matter the result of the previous one(s)?
ex:
file ‘xxx.c’ => [‘xxx.h’] do
if(sh(blablabla))
puts “do this”
else
puts “do this”
end
end
When for exemple the sh command failed, it quits and does not run the
rest of the scripts. How can I make this happen?
Thanks,
Luc