diff options
| -rw-r--r-- | Library/Homebrew/tap.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb index 58474c061..babebecc5 100644 --- a/Library/Homebrew/tap.rb +++ b/Library/Homebrew/tap.rb @@ -108,6 +108,11 @@ class Tap path.directory? end + # @private + def core_formula_repository? + false + end + # install this {Tap}. # # @param [Hash] options @@ -366,6 +371,11 @@ class CoreFormulaRepository < Tap end # @private + def core_formula_repository? + true + end + + # @private def formula_dir HOMEBREW_LIBRARY/"Formula" end |
