Sha256: 0cb5cf0194ad0730d486a3521ecdb7330634bfbc522d6fcb95f660dfa12e730b
Contents?: true
Size: 460 Bytes
Versions: 11
Compression:
Stored size: 460 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true # executes one of the commands in the new_relic/commands directory # pass the name of the command as an argument $LOAD_PATH << File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')) require 'new_relic/cli/command' begin NewRelic::Cli::Command.run rescue NewRelic::Cli::Command::CommandFailure => failure STDERR.puts failure.message STDERR.puts failure.options if failure.options exit(1) end
Version data entries
11 entries across 11 versions & 1 rubygems