lib/match/runner.rb in match-0.10.0 vs lib/match/runner.rb in match-0.11.0

- old
+ new

@@ -77,15 +77,15 @@ UI.message "Installing certificate..." if FastlaneCore::CertChecker.installed?(cert_path) UI.verbose "Certificate '#{File.basename(cert_path)}' is already installed on this machine" else - Utils.import(cert_path, params[:keychain_name]) + Utils.import(cert_path, params[:keychain_name], password: params[:keychain_password]) end # Import the private key # there seems to be no good way to check if it's already installed - so just install it - Utils.import(keys.last, params[:keychain_name]) + Utils.import(keys.last, params[:keychain_name], password: params[:keychain_password]) end return File.basename(cert_path).gsub(".cer", "") # Certificate ID end