Fastlane upload_file_to_s3 to use all files that match the extension (#5941)
This commit is contained in:
parent
f2db547d78
commit
b1b43ef000
1 changed files with 1 additions and 1 deletions
|
|
@ -188,7 +188,7 @@ lane :upload_file_to_s3 do |options|
|
|||
files.push("#{build_folder_path}/#{options[:file]}")
|
||||
else
|
||||
extensions.each do |extension|
|
||||
files.push(Dir.glob("#{build_folder_path}/#{extension}").select { |f| File.file? f}.first)
|
||||
files.push(*Dir.glob("#{build_folder_path}/#{extension}").select { |f| File.file? f})
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue