deliver/lib/deliver/sync_screenshots.rb in fastlane-2.217.0 vs deliver/lib/deliver/sync_screenshots.rb in fastlane-2.218.0

- old
+ new

@@ -43,11 +43,11 @@ def sync(screenshots) UI.important('This is currently a beta feature in fastlane. This may cause some errors on your environment.') unless FastlaneCore::Feature.enabled?('FASTLANE_ENABLE_BETA_DELIVER_SYNC_SCREENSHOTS') UI.user_error!('Please set a value to "FASTLANE_ENABLE_BETA_DELIVER_SYNC_SCREENSHOTS" environment variable ' \ - 'if you acknowleage the risk and try this out.') + 'if you acknowledge the risk and try this out.') end UI.important("Will begin uploading snapshots for '#{version.version_string}' on App Store Connect") # enable localizations that will be used @@ -104,10 +104,10 @@ end local_screenshots = iterator.each_local_screenshot(screenshots.group_by(&:language)).map do |localization, app_screenshot_set, screenshot, index| if index >= 10 UI.user_error!("Found #{localization.locale} has more than 10 screenshots for #{app_screenshot_set.screenshot_display_type}. "\ - "Make sure containts only necessary screenshots.") + "Make sure contains only necessary screenshots.") end ScreenshotComparable.create_from_local(screenshot: screenshot, app_screenshot_set: app_screenshot_set) end # Thanks to `Array#-` API and `ScreenshotComparable`, working out diffs between local screenshot directory and App Store Connect