Method: Fastlane::Actions::AppaloosaAction.get_screenshots
- Defined in:
- fastlane/lib/fastlane/actions/appaloosa.rb
.get_screenshots(screenshots_path, locale, device) ⇒ Object
89 90 91 92 93 |
# File 'fastlane/lib/fastlane/actions/appaloosa.rb', line 89 def self.get_screenshots(screenshots_path, locale, device) get_env_value('screenshots').nil? ? locale = '' : locale.concat('/') device.nil? ? device = '' : device.concat('-') screenshots_path.strip.empty? ? nil : screenshots_list(screenshots_path, locale, device) end |