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

MacOS: cache calls to mdfind

parent 45158034
No related branches found
No related tags found
No related merge requests found
......@@ -230,7 +230,9 @@ module MacOS extend self
end
def mdfind id
`/usr/bin/mdfind "kMDItemCFBundleIdentifier == '#{id}'"`.split("\n")
(@mdfind ||= {}).fetch(id.to_s) do
@mdfind[id.to_s] = `/usr/bin/mdfind "kMDItemCFBundleIdentifier == '#{id}'"`.split("\n")
end
end
def pkgutil_info id
......
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