Sha256: f850e650afebc972e60c1c1109c043aefe897cbd67685751834397b09da8b313

Contents?: true

Size: 433 Bytes

Versions: 3

Compression:

Stored size: 433 Bytes

Contents

#!/usr/bin/env ruby

require "racecar"
require "racecar/cli"

begin
  Racecar::Cli.main(ARGV)
rescue SignalException => e
  # We might receive SIGTERM before our signal handler is installed.
  if Signal.signame(e.signo) == "TERM"
    exit(0)
  else
    raise
  end
rescue
  # Exceptions are printed to STDERR and sent to the error handler
  # in `Racecar::Cli#run`, so we don't need to do anything here.
  exit(1)
else
  exit(0)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
racecar-2.0.0 exe/racecar
racecar-2.0.0.beta6 exe/racecar
racecar-2.0.0.beta5 exe/racecar