summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-07-12 15:18:55 -0700
committerCarlhuda <carlhuda@engineyard.com>2010-07-12 15:18:55 -0700
commitc5f25d61f0cb35b175da794a8e660947ebba41c6 (patch)
treebdc6c01e470260281f1e1ef617ad846f5f409dc5
parent4803fda05bb38f4152168fb3e53997d9c7df83df (diff)
downloadbundler-c5f25d61f0cb35b175da794a8e660947ebba41c6.tar.gz
Remove sudo -E, which never actually worked for what we wanted, and doesn't exist in OSX 10.5
-rw-r--r--lib/bundler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb
index f751d655e1..ea0cb39401 100644
--- a/lib/bundler.rb
+++ b/lib/bundler.rb
@@ -199,7 +199,7 @@ module Bundler
end
def sudo(str)
- `sudo -p 'Enter your password to install the bundled RubyGems to your system: ' -E #{str}`
+ `sudo -p 'Enter your password to install the bundled RubyGems to your system: ' #{str}`
end
private