From 81025b5808886289f54d698f73f4199c99223e7e Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Wed, 18 Jun 2008 22:00:09 -0700 Subject: [PATCH] fix toplevel pdoc task --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index e8ab0b2319..368f36e56c 100644 --- a/Rakefile +++ b/Rakefile @@ -76,6 +76,6 @@ desc "Publish API docs for Rails as a whole and for each component" task :pdoc => :rdoc do Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/api", "doc").upload PROJECTS.each do |project| - system %(cd #{project} && #{env} #{$0} #{task_name}) + system %(cd #{project} && #{env} #{$0} pdoc) end end