os/mac: ignore apps found in Time Machine backups.
These can introduce confusion on e.g. outdated Xcode versions when they are the only (or first) versions that are found.
This commit is contained in:
parent
57035b3ba4
commit
4f8af059df
@ -229,7 +229,9 @@ module OS
|
||||
end
|
||||
|
||||
def app_with_bundle_id(*ids)
|
||||
path = mdfind(*ids).first
|
||||
path = mdfind(*ids)
|
||||
.reject { |p| p.include?("/Backups.backupdb/") }
|
||||
.first
|
||||
Pathname.new(path) unless path.nil? || path.empty?
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user