From 5d312d25d0094c6cdbb1ff379ea6c15cc4ac1b8c Mon Sep 17 00:00:00 2001 From: Issy Long Date: Fri, 29 Jul 2022 21:49:59 +0100 Subject: [PATCH] dev-cmd/contributions: Properly auto-tap --- Library/Homebrew/dev-cmd/contributions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/contributions.rb b/Library/Homebrew/dev-cmd/contributions.rb index 73a77c1261..3e68f32d3d 100755 --- a/Library/Homebrew/dev-cmd/contributions.rb +++ b/Library/Homebrew/dev-cmd/contributions.rb @@ -56,7 +56,7 @@ module Homebrew next if repo == "versions" # This tap is deprecated, tapping it will error. opoo "Repository #{repo} not yet tapped! Tapping it now..." - Utils.safe_system("brew", "tap", repo_path) # TODO: Figure out why `exit code 1` happens here. + Tap.fetch("homebrew", repo).install end commits += git_log_author_cmd(T.must(repo_path), args)