Method: Deliver::DetectValues#find_platform

Defined in:
lib/deliver/detect_values.rb

#find_platform(options) ⇒ Object



61
62
63
64
65
66
67
# File 'lib/deliver/detect_values.rb', line 61

def find_platform(options)
  if options[:ipa]
    options[:platform] ||= FastlaneCore::IpaFileAnalyser.fetch_app_platform(options[:ipa])
  elsif options[:pkg]
    options[:platform] = 'osx'
  end
end