about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-06-10 07:02:19 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-06-10 07:02:19 +0000
commit375a0b5c5ed4316c1a1a59735f7767e2aeadaf3b (patch)
treee87129f5f55b2890f53da8ca1a6f9c511d80bbe6 /Rakefile
parentdb9bf40124ebc310e30913087e24071666b8867b (diff)
downloadunicorn-375a0b5c5ed4316c1a1a59735f7767e2aeadaf3b.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@237 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 13b8afc..4b2217c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -80,7 +80,7 @@ end
 task :install do
   sub_project("gem_plugin", :install)
   sh %{rake package}
-  sh %{sudo gem install pkg/mongrel-#{version}}
+  sh %{gem install pkg/mongrel-#{version}}
   sub_project("mongrel_status", :install)
   sub_project("mongrel_config", :install)
   sub_project("mongrel_console", :install)
@@ -90,14 +90,14 @@ task :uninstall => [:clean] do
   sub_project("mongrel_status", :uninstall)
   sub_project("mongrel_config", :uninstall)
   sub_project("mongrel_console", :uninstall)
-  sh %{sudo gem uninstall mongrel}
+  sh %{gem uninstall mongrel}
   sub_project("gem_plugin", :uninstall)
 end
 
 
 task :gem_source do
   mkdir_p "pkg/gems"
-
+
   FileList["**/*.gem"].each { |gem| mv gem, "pkg/gems" }
   FileList["pkg/*.tgz"].each {|tgz| rm tgz }
   rm_rf "pkg/#{name}-#{version}"