match/lib/match/importer.rb in fastlane-2.142.0 vs match/lib/match/importer.rb in fastlane-2.143.0
- old
+ new
@@ -52,12 +52,12 @@
# Map match type into Spaceship::ConnectAPI::Certificate::CertificateType
cert_type = Match.cert_type_sym(params[:type])
case cert_type
when :development
- certificate_type = Spaceship::ConnectAPI::Certificate::CertificateType::IOS_DEVELOPMENT
+ certificate_type = Spaceship::ConnectAPI::Certificate::CertificateType::IOS_DEVELOPMENT + "," + Spaceship::ConnectAPI::Certificate::CertificateType::DEVELOPMENT
when :distribution, :enterprise
- certificate_type = Spaceship::ConnectAPI::Certificate::CertificateType::IOS_DISTRIBUTION
+ certificate_type = Spaceship::ConnectAPI::Certificate::CertificateType::IOS_DISTRIBUTION + "," + Spaceship::ConnectAPI::Certificate::CertificateType::DISTRIBUTION
else
UI.user_error!("Cert type '#{cert_type}' is not supported")
end
output_dir = File.join(storage.prefixed_working_directory, "certs", cert_type.to_s)