Sha256: fda2c9a8bcde637a32420f61832bc30589e0eab706bf462736e60156d80bf6da

Contents?: true

Size: 293 Bytes

Versions: 62

Compression:

Stored size: 293 Bytes

Contents

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

require 'bolt'
require 'bolt/cli'

Thread.current[:name] ||= 'main'
cli = Bolt::CLI.new(ARGV)
begin
  opts = cli.parse
  exitcode = cli.execute(opts)
  exit exitcode
rescue Bolt::CLIExit
  exit
rescue Bolt::Error => e
  exit e.error_code
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
bolt-2.24.1 exe/bolt
bolt-2.24.0 exe/bolt