From 5a50a0f2327a87e4ef0aca2d36df1c6b8791857b Mon Sep 17 00:00:00 2001 From: botantony Date: Thu, 17 Jul 2025 17:16:37 +0200 Subject: [PATCH] formulary: make `no_autobump!` reason a symbol when needed Signed-off-by: botantony --- Library/Homebrew/formulary.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb index 4e75312a8d..ec1e3630ba 100644 --- a/Library/Homebrew/formulary.rb +++ b/Library/Homebrew/formulary.rb @@ -314,6 +314,7 @@ module Formulary end if (because = json_formula["no_autobump_msg"]) + because = because.to_sym if NO_AUTOBUMP_REASONS_LIST.key?(because.to_sym) no_autobump!(because:) end