aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/utils
diff options
context:
space:
mode:
authorilovezfs2017-10-24 03:07:33 -0700
committerilovezfs2017-10-24 03:07:33 -0700
commit1937625d861ef1ef7bc0796477fdb81e7dbb9cf4 (patch)
tree5a06d9ec92d0a96872ab7eea79b1082da3078a19 /Library/Homebrew/utils
parent7f46dcfa35a23af4a8ef812f2eb2c2fa2a2e13d5 (diff)
downloadbrew-1937625d861ef1ef7bc0796477fdb81e7dbb9cf4.tar.bz2
github: require formula name to be in issue title
Diffstat (limited to 'Library/Homebrew/utils')
-rw-r--r--Library/Homebrew/utils/github.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils/github.rb b/Library/Homebrew/utils/github.rb
index f88d52403..e73951c8d 100644
--- a/Library/Homebrew/utils/github.rb
+++ b/Library/Homebrew/utils/github.rb
@@ -235,7 +235,7 @@ module GitHub
def issues_for_formula(name, options = {})
tap = options[:tap] || CoreTap.instance
- search_issues(name, state: "open", repo: "#{tap.user}/homebrew-#{tap.repo}")
+ search_issues(name, state: "open", repo: "#{tap.user}/homebrew-#{tap.repo}", in: "title")
end
def print_pull_requests_matching(query)