Sha256: 2d04d2c0ca0aef5a0cabdf9d16b8b4c5a17902e8215d18ab9d0a862028d5541c
Contents?: true
Size: 697 Bytes
Versions: 6
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true module RubyEasyRSA module Commands module Mixins module InlineCredentialsFileConfig private # rubocop:disable Style/RedundantAssignment def configure_command(initial_builder, parameters) builder = super builder = with_inline_credentials_file( builder, parameters[:inline_credentials_file] ) builder end # rubocop:enable Style/RedundantAssignment def with_inline_credentials_file(builder, inline_credentials_file) return builder unless inline_credentials_file builder.with_argument('inline') end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems