Sha256: f4717f5cf872a3b23b4352ff156320c930077755379aa9d296fcdde1c61e3a38
Contents?: true
Size: 361 Bytes
Versions: 33
Compression:
Stored size: 361 Bytes
Contents
#!/usr/bin/env ruby require 'r10k/cli' require 'colored2' 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
33 entries across 33 versions & 2 rubygems