aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-12-18 21:12:45 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-12-18 21:12:45 +0000
commit2bdac92dcf8caf9e2b45796f8af56da6a293d722 (patch)
tree147f7ed4d1311f37419b68f4b840da8198a23ee2 /Rakefile
parentab9e4c0eaacba34c9f1d16cf34c82e0e906edad5 (diff)
downloadrails-2bdac92dcf8caf9e2b45796f8af56da6a293d722.tar.gz
rails-2bdac92dcf8caf9e2b45796f8af56da6a293d722.tar.bz2
rails-2bdac92dcf8caf9e2b45796f8af56da6a293d722.zip
Toplevel test task uses the same rake it was invoked with
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8432 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 30537755a9..11d205a725 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,7 +15,7 @@ task :default => :test
desc "Run #{task_name} task for all projects"
task task_name do
PROJECTS.each do |project|
- system %(cd #{project} && #{env} rake #{task_name})
+ system %(cd #{project} && #{env} #{$0} #{task_name})
end
end
end