mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
14 lines
224 B
Ruby
Executable file
14 lines
224 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
require_relative '../lib/sidekiq/cli'
|
|
|
|
begin
|
|
cli = Sidekiq::CLI.instance
|
|
cli.parse
|
|
cli.run
|
|
rescue => e
|
|
raise e if $DEBUG
|
|
STDERR.puts e.message
|
|
STDERR.puts e.backtrace.join("\n")
|
|
exit 1
|
|
end
|