diff options
author | abcang <abcang1015@gmail.com> | 2018-09-07 12:42:54 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-09-07 05:42:54 +0200 |
commit | 2058af4a265e96291096d8c1d1da2ad83c5d24cf (patch) | |
tree | bdf0781314d1156f68c1b8e854c970ae5a8860c0 /bin | |
parent | 10680f93e7d6333d43aabc4c6f251a076120231c (diff) |
config/boot is required first (#8619)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/tootctl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/tootctl b/bin/tootctl index 2fe02523a..f26e1c7ed 100755 --- a/bin/tootctl +++ b/bin/tootctl @@ -1,4 +1,5 @@ #!/usr/bin/env ruby APP_PATH = File.expand_path('../config/application', __dir__) +require_relative '../config/boot' require_relative '../lib/cli' Mastodon::CLI.start(ARGV) |