summaryrefslogtreecommitdiff
path: root/bin/oxidized
blob: e5d9bec69a5ff99e4a09b6e5880ceaa181a1bc6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env ruby


# FIX ME, killing oxidized needs -9
trap("INT") { exit } # sinatra will otherwise steal this from us

begin
  require 'oxidized/cli'
  Oxidized::CLI.new.run
rescue => error
  warn "#{error}"
  raise if Oxidized::CFG.debug
end