Sha256: f38f205636ef2a684b5e49a1bdd47f6af430cf198aeb412256da0595342fdb7b

Contents?: true

Size: 360 Bytes

Versions: 14

Compression:

Stored size: 360 Bytes

Contents

#!/usr/bin/env ruby

require 'r10k/cli'
require 'colored'

begin
  R10K::CLI.command.run(ARGV)
rescue Interrupt
  $stderr.puts "r10k: Aborted!".red
  exit(1)
rescue SystemExit => e
  exit(e.status)
rescue Exception => e
  $stderr.puts "\nr10k: Runtime error: #{e.inspect}".red
  $stderr.puts e.backtrace.join("\n").red if ARGV.include? '--trace'
  exit(1)
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
r10k-3.3.3 bin/r10k
r10k-3.2.3 bin/r10k
r10k-3.3.2 bin/r10k
r10k-3.3.1 bin/r10k
r10k-3.2.1 bin/r10k
r10k-3.0.4 bin/r10k
r10k-3.3.0 bin/r10k
r10k-3.2.0 bin/r10k
r10k-3.1.1 bin/r10k
r10k-3.1.0 bin/r10k
r10k-3.0.3 bin/r10k
r10k-3.0.2 bin/r10k
r10k-3.0.1 bin/r10k
r10k-3.0.0 bin/r10k