match/lib/match/importer.rb in fastlane-2.177.0 vs match/lib/match/importer.rb in fastlane-2.178.0
- old
+ new
@@ -147,10 +147,10 @@
UI.user_error!("#{file_description} does not exist at path: #{file_path}") unless !file_path.nil? || optional
file_path
end
def api_token(params)
- @api_token ||= Spaceship::ConnectAPI::Token.create(params[:api_key]) if params[:api_key]
+ @api_token ||= Spaceship::ConnectAPI::Token.create(**params[:api_key]) if params[:api_key]
@api_token ||= Spaceship::ConnectAPI::Token.from_json_file(params[:api_key_path]) if params[:api_key_path]
return @api_token
end
end
end