deliver/lib/deliver/download_screenshots.rb in fastlane-2.121.0 vs deliver/lib/deliver/download_screenshots.rb in fastlane-2.121.1

- old
+ new

@@ -39,10 +39,10 @@ FileUtils.mkdir_p(containing_folder) rescue # if it's already there end path = File.join(containing_folder, file_name) - File.write(path, open(screenshot.url).read) + File.binwrite(path, open(screenshot.url).read) end end end end end