From 0fb9fd2cbe2b0298540780d6147da8bb02f63d28 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Tue, 24 Nov 2020 18:55:17 +0100 Subject: [PATCH] Don't output backtrace in `Formulary`. --- Library/Homebrew/formulary.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb index efe4ef24b4..f0e32e7df7 100644 --- a/Library/Homebrew/formulary.rb +++ b/Library/Homebrew/formulary.rb @@ -47,7 +47,6 @@ module Formulary mod.const_set(:BUILD_FLAGS, flags) mod.module_eval(contents, path) rescue NameError, ArgumentError, ScriptError, MethodDeprecatedError => e - $stderr.puts e.backtrace if Homebrew::EnvConfig.developer? raise FormulaUnreadableError.new(name, e) end class_name = class_s(name)