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