match/lib/match/module.rb in fastlane_hotfix-2.165.1 vs match/lib/match/module.rb in fastlane_hotfix-2.187.0

- old
+ new

@@ -7,11 +7,11 @@ Boolean = Fastlane::Boolean ROOT = Pathname.new(File.expand_path('../../..', __FILE__)) DESCRIPTION = "Easily sync your certificates and profiles across your team" def self.environments - return %w(appstore adhoc development enterprise developer_id) + return %w(appstore adhoc development enterprise developer_id mac_installer_distribution) end def self.storage_modes return %w(git google_cloud s3) end @@ -19,9 +19,10 @@ def self.profile_type_sym(type) return type.to_sym end def self.cert_type_sym(type) + type = type.to_s return :mac_installer_distribution if type == "mac_installer_distribution" return :developer_id_installer if type == "developer_id_installer" return :developer_id_application if type == "developer_id" return :enterprise if type == "enterprise" return :development if type == "development"