Sha256: 32efc3749d80b595760ceaae01993b1452cfe6744ced45e0f2b6457793f8160b
Contents?: true
Size: 461 Bytes
Versions: 25
Compression:
Stored size: 461 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
25 entries across 25 versions & 1 rubygems