Run bundle exec rake instead of bin/rake during CI

This commit is contained in:
Carl Lerche 2010-02-01 15:08:40 -08:00
parent 90ab1a6a4d
commit 16c0d1d3b6

@ -7,7 +7,7 @@ def root_dir
end
def rake(*tasks)
tasks.each { |task| return false unless system("#{root_dir}/bin/rake", task) }
tasks.each { |task| return false unless system("bundle exec rake", task) }
true
end