Sha256: 2824e3f000577c8f14c0406e26e5cedd10dd88b7596234a3f5ecea2ac9d248c9
Contents?: true
Size: 458 Bytes
Versions: 14
Compression:
Stored size: 458 Bytes
Contents
#!/usr/bin/env ruby # Trap interrupts to quit cleanly. See # https://twitter.com/mitchellh/status/283014103189053442 Signal.trap("INT") { exit 1 } $:.push File.expand_path("../../lib", __FILE__) $stdout.sync = true require "omnibus/cli" # Some platforms do not have a UTF-8 locale, so we need to enforce one # or else the cacert chain will break among other things Encoding.default_external = Encoding::UTF_8 Omnibus::CLI::Runner.new(ARGV.dup).execute!
Version data entries
14 entries across 14 versions & 1 rubygems