Skip to content
Snippets Groups Projects
Commit 273d5805 authored by Jack Nagel's avatar Jack Nagel
Browse files

Apparently quiet_system isn't always quiet

cf. Homebrew/homebrew#28918.
parent cf5ecfc0
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ class Checks
# git here to avoid multiple warnings.
def git?
return @git if instance_variable_defined?(:@git)
@git = which("git") && quiet_system("git", "--version")
@git = system "git --version >/dev/null 2>&1"
end
############# END HELPERS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment