From 1e47a9dde80e05cfb954f71cfa4474601b2919b2 Mon Sep 17 00:00:00 2001 From: Seeker Date: Fri, 31 Jul 2020 14:12:14 -0700 Subject: [PATCH] bump-formula-pr: fix `missing keyword: args` error --- Library/Homebrew/dev-cmd/bump-formula-pr.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/bump-formula-pr.rb b/Library/Homebrew/dev-cmd/bump-formula-pr.rb index 7915b15eb1..94bef20b28 100644 --- a/Library/Homebrew/dev-cmd/bump-formula-pr.rb +++ b/Library/Homebrew/dev-cmd/bump-formula-pr.rb @@ -510,7 +510,7 @@ module Homebrew end # if we haven't already found open requests, try for an exact match across all requests pull_requests = fetch_pull_requests("#{formula.name} #{version}", tap_full_name) if pull_requests.blank? - check_for_duplicate_pull_requests(pull_requests) + check_for_duplicate_pull_requests(pull_requests, args: args) end def check_for_duplicate_pull_requests(pull_requests, args:)