18 lines
414 B
Ruby
Executable File
18 lines
414 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
APP_PATH = File.expand_path('../config/application', __dir__)
|
|
|
|
require_relative '../config/boot'
|
|
require_relative '../lib/mastodon/cli/main'
|
|
|
|
begin
|
|
Chewy.strategy(:mastodon) do
|
|
<<<<<<< HEAD
|
|
Mastodon::CLI::Main.start(ARGV)
|
|
=======
|
|
Mastodon::CLI.start(ARGV)
|
|
>>>>>>> 479b66637 (Fix sidekiq jobs not triggering Elasticsearch index updates (#24046))
|
|
end
|
|
rescue Interrupt
|
|
exit(130)
|
|
end
|