Skip to content
Snippets Groups Projects
Commit a662bd44 authored by Misty De Meo's avatar Misty De Meo
Browse files

config: return early if java_home is missing

Fixes mistydemeo/tigerbrew#365.
parent 258a764f
No related branches found
No related tags found
No related merge requests found
......@@ -148,6 +148,9 @@ module Homebrew
end
def describe_java
# java_home doesn't exist on all OS Xs; it might be missing on older versions.
return "N/A" unless File.executable? "/usr/libexec/java_home"
java_xml = Utils.popen_read("/usr/libexec/java_home", "--xml", "--failfast")
return "N/A" unless $?.success?
javas = []
......
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