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