Method: Fastlane::Actions::AppaloosaAction.remove_extra_screenshots_file
- Defined in:
- fastlane/lib/fastlane/actions/appaloosa.rb
.remove_extra_screenshots_file(screenshots_env) ⇒ Object
60 61 62 63 |
# File 'fastlane/lib/fastlane/actions/appaloosa.rb', line 60 def self.remove_extra_screenshots_file(screenshots_env) extra_file = "#{screenshots_env}/screenshots.html" File.unlink(extra_file) if File.exist?(extra_file) end |