diff options
| author | Rin Toshaka <rinpatch@sdf.org> | 2018-12-05 19:05:37 +0100 | 
|---|---|---|
| committer | Rin Toshaka <rinpatch@sdf.org> | 2018-12-05 19:05:37 +0100 | 
| commit | ffec96d8ccee6d51e3806d209ae176fb2c589beb (patch) | |
| tree | 15ed02692ba861813070ad93ab0eb862477a9be1 /lib/mix/tasks | |
| parent | facfd03bc1f9ec2464fb0b78ece2c7d3162521db (diff) | |
| download | pleroma-ffec96d8ccee6d51e3806d209ae176fb2c589beb.tar.gz pleroma-ffec96d8ccee6d51e3806d209ae176fb2c589beb.zip  | |
Everything should use Mix.Task.Run
Diffstat (limited to 'lib/mix/tasks')
| -rw-r--r-- | lib/mix/tasks/pleroma/user.ex | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mix/tasks/pleroma/user.ex b/lib/mix/tasks/pleroma/user.ex index 14ba60bf4..e2b9b6236 100644 --- a/lib/mix/tasks/pleroma/user.ex +++ b/lib/mix/tasks/pleroma/user.ex @@ -198,7 +198,7 @@ defmodule Mix.Tasks.Pleroma.User do    end    def run(["set", nickname | rest]) do -    Application.ensure_all_started(:pleroma) +    Mix.Task.run("app.start")      {options, [], []} =        OptionParser.parse(  | 
