aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-03-05 19:29:40 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-03-05 19:29:40 +0000
commit3c756f85be3238d99194bcbc69089ef37b13a220 (patch)
treee35709ddaad7ec5570c999235d14f355fc00f5c6
parent0635f633ccfdef719e805de20b3b5b385bf72b57 (diff)
downloadrails-3c756f85be3238d99194bcbc69089ef37b13a220.tar.gz
rails-3c756f85be3238d99194bcbc69089ef37b13a220.tar.bz2
rails-3c756f85be3238d99194bcbc69089ef37b13a220.zip
Dont mkdir for each framework now that theyre checked out in their entirety
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3779 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--railties/lib/tasks/framework.rake1
1 files changed, 0 insertions, 1 deletions
diff --git a/railties/lib/tasks/framework.rake b/railties/lib/tasks/framework.rake
index ae4d059126..07b680f749 100644
--- a/railties/lib/tasks/framework.rake
+++ b/railties/lib/tasks/framework.rake
@@ -44,7 +44,6 @@ namespace :rails do
revision_switch = ENV['REVISION'] ? " -r #{ENV['REVISION']}" : ''
for framework in %w( railties actionpack activerecord actionmailer activesupport actionwebservice )
- mkdir_p "vendor/rails/#{framework}"
system "svn export http://dev.rubyonrails.org/svn/rails/trunk/#{framework} vendor/rails/#{framework} #{revision_switch}"
end
end