2018-08-25 04:25:39 -07:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
APP_PATH = File.expand_path('../config/application', __dir__)
|
2020-05-15 09:41:27 -07:00
|
|
|
|
2018-09-06 20:42:54 -07:00
|
|
|
require_relative '../config/boot'
|
2023-05-23 07:08:26 -07:00
|
|
|
require_relative '../lib/mastodon/cli/main'
|
2020-05-15 09:41:27 -07:00
|
|
|
|
|
|
|
begin
|
2023-03-12 15:47:55 -07:00
|
|
|
Chewy.strategy(:mastodon) do
|
2024-01-26 00:53:44 -08:00
|
|
|
Mastodon::CLI::Main.start(ARGV, debug: true) # Enables the script to rescue `Thor::Error`
|
2023-03-12 15:47:55 -07:00
|
|
|
end
|
2024-01-26 00:53:44 -08:00
|
|
|
rescue Thor::Error => e
|
|
|
|
Thor::Shell::Color
|
|
|
|
.new
|
|
|
|
.say_error(e.message, :red)
|
|
|
|
exit(1)
|
2020-05-15 09:41:27 -07:00
|
|
|
rescue Interrupt
|
|
|
|
exit(130)
|
|
|
|
end
|