#!/usr/bin/ruby
# frozen_string_literal: true

begin
  require 'puppet/util/command_line'
  Puppet::Util::CommandLine.new.execute
rescue LoadError => e
  $stderr.puts e.message
  exit(1)
end
