about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
authorevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-11-12 20:32:35 +0000
committerevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-11-12 20:32:35 +0000
commit2d38b5d25b1f39f883f112e9750dd8d20ec68d8d (patch)
treed2add90a33f65e10ba21d09f69341d068d639815 /Rakefile
parent0660f36c162714afcab221638ec2f703d20425ab (diff)
downloadunicorn-2d38b5d25b1f39f883f112e9750dd8d20ec68d8d.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@876 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index f64628a..398930d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -120,7 +120,7 @@ def sub_project(project, *targets)
   targets.each do |target|
     Dir.chdir "projects/#{project}" do
       unless RUBY_PLATFORM =~ /mswin/
-        sh %{rake --trace #{target.to_s} }
+        sh("rake #{target.to_s}") # --trace
       end
     end
   end
@@ -155,7 +155,7 @@ task :install => [:install_requirements] do
   sub_project("mongrel_upload_progress", :install)
   sub_project("mongrel_console", :install)
   sub_project("mongrel_cluster", :install)
-  sub_project("mongrel_experimental", :install)
+  # sub_project("mongrel_experimental", :install)
   sub_project("mongrel_service", :install) if RUBY_PLATFORM =~ /mswin/
 end
 
@@ -167,7 +167,7 @@ task :uninstall => [:clean] do
   sub_project("mongrel_console", :uninstall)
   sub_project("gem_plugin", :uninstall)
   sub_project("fastthread", :uninstall)
-  sub_project("mongrel_experimental", :uninstall)
+  # sub_project("mongrel_experimental", :uninstall)
   sub_project("mongrel_service", :uninstall) if RUBY_PLATFORM =~ /mswin/
 end