diff options
| author | Mike McQuaid | 2018-01-30 09:55:08 -0800 |
|---|---|---|
| committer | GitHub | 2018-01-30 09:55:08 -0800 |
| commit | 701ecb49755d9be3f4c40ce979814027cda1c479 (patch) | |
| tree | 1801763623ceefe27f95106300d2375b0b218716 | |
| parent | c77cafcf821264ae777f978eed3f9674f2be1d1e (diff) | |
| parent | c9f02aa3f7672fe87e29e08f908dd2a14249653e (diff) | |
| download | brew-701ecb49755d9be3f4c40ce979814027cda1c479.tar.bz2 | |
Merge pull request #3747 from MikeMcQuaid/no-tap-deprecated
tap: don’t tap deprecated taps.
| -rw-r--r-- | Library/Homebrew/tap.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb index ed93e1266..d128c68fb 100644 --- a/Library/Homebrew/tap.rb +++ b/Library/Homebrew/tap.rb @@ -211,7 +211,7 @@ class Tap requested_remote = options[:clone_target] || default_remote if official? && DEPRECATED_OFFICIAL_TAPS.include?(repo) - opoo "#{name} was deprecated. This tap is now empty as all its formulae were migrated." + odie "#{name} was deprecated. This tap is now empty as all its formulae were migrated." end if installed? |
