aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorJack Nagel2014-06-23 18:50:55 -0500
committerJack Nagel2014-06-23 18:50:55 -0500
commit3dbcba0c03225f2069e8d0681fbdecba9469d345 (patch)
tree3dd3dc56c0858743b1545d41b795a896c2c41f35 /Library/Homebrew/cmd
parent43cb0b91417d941922993e25f8fa70f5ca31745b (diff)
downloadbrew-3dbcba0c03225f2069e8d0681fbdecba9469d345.tar.bz2
Call original backtick using super
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/update.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/update.rb b/Library/Homebrew/cmd/update.rb
index d243799e8..6166571cd 100644
--- a/Library/Homebrew/cmd/update.rb
+++ b/Library/Homebrew/cmd/update.rb
@@ -196,7 +196,7 @@ class Updater
end
def `(cmd)
- out = Kernel.`(cmd) #`
+ out = super
if $? && !$?.success?
$stderr.puts out
raise ErrorDuringExecution, "Failure while executing: #{cmd}"