fastlane/lib/fastlane/actions/add_extra_platforms.rb in fastlane-2.74.1 vs fastlane/lib/fastlane/actions/add_extra_platforms.rb in fastlane-2.75.0.beta.20180109010003

- old
+ new

@@ -1,11 +1,11 @@ module Fastlane module Actions class AddExtraPlatformsAction < Action def self.run(params) - UI.verbose "Before injecting extra platforms: #{Fastlane::SupportedPlatforms.all}" + UI.verbose("Before injecting extra platforms: #{Fastlane::SupportedPlatforms.all}") Fastlane::SupportedPlatforms.extra = params[:platforms] - UI.verbose "After injecting extra platforms (#{params[:platforms]})...: #{Fastlane::SupportedPlatforms.all}" + UI.verbose("After injecting extra platforms (#{params[:platforms]})...: #{Fastlane::SupportedPlatforms.all}") end def self.description "Modify the default list of supported platforms" end