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
commit7edbf8a40f2b411fed12e695ae6d0a6cee6d0630 (patch)
treef4273dbd00d90c85068ac11b9ffedbf5a59163dd /Library/Homebrew/cmd
parent08a3ddbcafb2ec69abb92cd02b5422690a754fcd (diff)
downloadhomebrew-7edbf8a40f2b411fed12e695ae6d0a6cee6d0630.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}"