Skip to content
Snippets Groups Projects
Commit 736556bd authored by ilovezfs's avatar ilovezfs Committed by GitHub
Browse files

Merge pull request #1974 from ilovezfs/nonstandard-bump-subject-false-positives

pull: fix false positives for nonstandard bump subjects when untapped
parents 526cab40 79280826
No related branches found
No related tags found
No related merge requests found
......@@ -376,7 +376,7 @@ module Homebrew
subject_strs << "remove stable"
formula_name_str += ":" # just for cosmetics
else
subject_strs << formula.version.to_s
subject_strs << new[:stable]
end
end
if old[:devel] != new[:devel]
......@@ -387,7 +387,7 @@ module Homebrew
formula_name_str += ":" # just for cosmetics
end
else
subject_strs << "#{formula.devel.version} (devel)"
subject_strs << "#{new[:devel]} (devel)"
end
end
subject = subject_strs.empty? ? nil : "#{formula_name_str} #{subject_strs.join(", ")}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment