Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

diagnostic: don't tap homebrew/core #3053

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions Library/Homebrew/diagnostic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,8 @@ def check_for_bad_python_symlink
end

def check_for_non_prefixed_coreutils
return unless CoreTap.instance.installed?

coreutils = Formula["coreutils"]
return unless coreutils.any_version_installed?

Expand All @@ -955,6 +957,8 @@ def check_for_non_prefixed_coreutils
end

def check_for_non_prefixed_findutils
return unless CoreTap.instance.installed?

findutils = Formula["findutils"]
return unless findutils.any_version_installed?

Expand Down