fastlane-old / deliver

Upload screenshots, metadata and your app to the App Store using a single command
https://fastlane.tools
2.24k stars 162 forks source link

Fix case-sensitive discovery of screenshots on Ruby < 2.2 #560

Closed mfurtak closed 8 years ago

mfurtak commented 8 years ago

Addresses #531

On Ruby 2.1.x, Dir.glob() acts case-sensitively, but it doesn't on Ruby 2.2.3. This passes a flag to Dir.glob() to make it always match case insensitively when we are searching for *.{png,jpg,jpeg} etc.

samrobbins commented 8 years ago

:100: :white_check_mark: