Sha256: 70c1ff5792d8b90b26cff23e86b27c9510cc234656661e68a1d88b3ae2cbf375
Contents?: true
Size: 571 Bytes
Versions: 98
Compression:
Stored size: 571 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true require 'optparse' require 'appmap' require 'appmap/command/agent_setup/status' @options = { config_file: AppMap::DEFAULT_CONFIG_FILE_PATH } OptionParser.new do |parser| parser.banner = 'Usage: appmap-agent-status [options]' description = "AppMap configuration file path (default: #{AppMap::DEFAULT_CONFIG_FILE_PATH})" parser.on('-c', '--config=FILEPATH', description) do |filepath| @options[:config_file] = filepath end end.parse! AppMap::Command::AgentSetup::Status.new(@options[:config_file]).perform
Version data entries
98 entries across 98 versions & 1 rubygems