From 376087459980289864084affcefd011a50f7421a Mon Sep 17 00:00:00 2001 From: Nathan Esquenazi Date: Tue, 7 Jun 2011 19:34:17 -0700 Subject: [PATCH] [Rakefile] Change uninstall to use sh --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 175b230cb..483b7ff4e 100644 --- a/Rakefile +++ b/Rakefile @@ -53,7 +53,7 @@ end desc "Clean pkg and other stuff" task :uninstall do - sudo_sh "gem search --no-version padrino | grep padrino | xargs gem uninstall -a" + sh "gem search --no-version padrino | grep padrino | xargs gem uninstall -a" end desc "Displays the current version"