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

Extract version_from_mdls

parent 0b5551ee
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ module MacOS::XQuartz extend self
@version ||= begin
path = bundle_path
if not path.nil? and path.exist?
`mdls -raw -name kMDItemVersion "#{path}" 2>/dev/null`.strip
version_from_mdls(path)
elsif prefix.to_s == "/usr/X11"
guess_system_version
else
......@@ -29,6 +29,10 @@ module MacOS::XQuartz extend self
MacOS.app_with_bundle_id(FORGE_BUNDLE_ID) || MacOS.app_with_bundle_id(APPLE_BUNDLE_ID)
end
def version_from_mdls(path)
`mdls -raw -name kMDItemVersion "#{path}" 2>/dev/null`.strip
end
# The XQuartz that Apple shipped in OS X through 10.7 does not have a
# pkg-util entry, so if Spotlight indexing is disabled we must make an
# educated guess as to what version is installed.
......
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