class ChefConfig::Config

def self.derive_path_from_chef_repo_path(child_path)

Parameters:
  • child_path (String) --
def self.derive_path_from_chef_repo_path(child_path)
  if chef_repo_path.is_a?(String)
    PathHelper.join(chef_repo_path, child_path)
  else
    chef_repo_path.uniq.map { |path| PathHelper.join(path, child_path) }
  end
end