fix style

This commit is contained in:
Bevan Kay 2021-07-07 17:40:35 +10:00
parent 2af4254e82
commit b8a6cbe410
No known key found for this signature in database
GPG Key ID: 479C98436A4773B9

View File

@ -88,13 +88,13 @@ module Homebrew
apps.flat_map do |app|
top_level_info_plists(Pathname.glob(dir/"**"/app.source.basename/"Contents"/"Info.plist"))
.sort
.each {|match| info_plist_paths.push(match)}
.each { |match| info_plist_paths.push(match) }
end
qlplugins.flat_map do |qlplugin|
top_level_info_plists(Pathname.glob(dir/"**"/qlplugin.source.basename/"Contents"/"Info.plist"))
.sort
.each {|match| info_plist_paths.push(match)}
.each { |match| info_plist_paths.push(match) }
end
info_plist_paths.each(&parse_info_plist)