From 72632158ff18ebc415a2a12d22bb6829b4108a6a Mon Sep 17 00:00:00 2001 From: Osama Albahrani <54853250+osalbahr@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:32:41 +0300 Subject: [PATCH] info.rb: add size placeholder - Towards https://github.com/Homebrew/brew/issues/18373 --- Library/Homebrew/cmd/info.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb index 7abc703422a7b..ed5b727fa62de 100644 --- a/Library/Homebrew/cmd/info.rb +++ b/Library/Homebrew/cmd/info.rb @@ -352,6 +352,9 @@ def info_formula(formula) ohai "Caveats", caveats.to_s unless caveats.empty? Utils::Analytics.formula_output(formula, args:) + + ohai "Size" + puts "Bottle size: 0" end def decorate_dependencies(dependencies)