You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
277 B
15 lines
277 B
4 years ago
|
#!/usr/bin/env ruby
|
||
|
Signal.trap("INT") { exit 1 }
|
||
|
|
||
|
$stdout.sync = true
|
||
|
$stderr.sync = true
|
||
|
|
||
|
require_relative "../lib/bento/cli"
|
||
|
|
||
|
begin
|
||
|
Runner.new(Options.parse(ARGV)).start
|
||
|
rescue => ex
|
||
|
warn ">>> #{ex.message}"
|
||
|
exit(($CHILD_STATUS && $CHILD_STATUS.exitstatus) || 99)
|
||
|
end
|