Use select instead of flat_map.
This commit is contained in:
parent
6e5ab67838
commit
cf3054526a
@ -126,7 +126,7 @@ module Homebrew
|
|||||||
# Installers are sometimes contained within an `.app`, so try both.
|
# Installers are sometimes contained within an `.app`, so try both.
|
||||||
installer_path = artifact.path
|
installer_path = artifact.path
|
||||||
installer_path.ascend
|
installer_path.ascend
|
||||||
.flat_map { |path| (path == installer_path || path.extname == ".app") ? [path] : [] }
|
.select { |path| path == installer_path || path.extname == ".app" }
|
||||||
.sort
|
.sort
|
||||||
else
|
else
|
||||||
[artifact.source.basename]
|
[artifact.source.basename]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user