From 04f89a94ba61a2151577b0a6862f178f786cdbb0 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sun, 22 Feb 2015 15:59:11 +0000 Subject: [PATCH] pull: run tap --repair when pulling tap formulae. This should allow formulae to be found after they are pulled. Closes Homebrew/homebrew#37043. --- Library/Homebrew/cmd/pull.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb index eb9c64f87b..9647ad195b 100644 --- a/Library/Homebrew/cmd/pull.rb +++ b/Library/Homebrew/cmd/pull.rb @@ -94,6 +94,7 @@ module Homebrew changed_formulae = [] if tap_dir + safe_system "brew", "tap", "--repair" formula_dir = %w[Formula HomebrewFormula].find { |d| tap_dir.join(d).directory? } || "" else formula_dir = "Library/Formula"