Skip to content

Commit c46a6b9

Browse files
authored
Merge pull request #20299 from Homebrew/allow-deprecated-unsigned-autobump
tap: continue to autobump deprecated unsigned casks
2 parents e55cd21 + 5a04b55 commit c46a6b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Library/Homebrew/tap.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,8 @@ def autobump
994994
end
995995

996996
@autobump ||= autobump_packages.select do |_, p|
997-
next if p["deprecated"] || p["disabled"]
997+
next if p["disabled"]
998+
next if p["deprecated"] && p["deprecation_reason"] != "unsigned"
998999
next if p["skip_livecheck"]
9991000

10001001
p["autobump"] == true

0 commit comments

Comments
 (0)