mirror of
https://github.com/zhigang1992/fir-cli.git
synced 2026-01-13 09:09:55 +08:00
15 lines
220 B
Ruby
Executable File
15 lines
220 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# encoding: utf-8
|
|
|
|
require_relative '../lib/fir'
|
|
|
|
begin
|
|
OS.set_locale
|
|
FIR::CLI.start ARGV
|
|
rescue => e
|
|
raise e if $DEBUG
|
|
STDERR.puts e.message
|
|
STDERR.puts e.backtrace.join("\n")
|
|
exit 1
|
|
end
|