Sha256: 77fa99c69b23fbde8e4e964a179689ca1d75260b322c0d77e2982ca83456ddf9
Contents?: true
Size: 454 Bytes
Versions: 13
Compression:
Stored size: 454 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", __dir__) $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
13 entries across 13 versions & 1 rubygems