diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-11-28 12:05:01 -0600 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-12-02 10:43:22 -0600 |
commit | d0cb73527f1bc21aa6bb6d21bfcdf58c406c5b0c (patch) | |
tree | 8fdd9b01de4d9e666aefa2d215bd951c16afb15e | |
parent | 570a923a3b77edc98c18c0cfb60e3a2d7bf2b2e8 (diff) | |
download | pleroma-d0cb73527f1bc21aa6bb6d21bfcdf58c406c5b0c.tar.gz |
Ensure scary warning starts on a new line
-rw-r--r-- | lib/mix/tasks/pleroma/config.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mix/tasks/pleroma/config.ex b/lib/mix/tasks/pleroma/config.ex index 0c8170c9c..fe0cd81f8 100644 --- a/lib/mix/tasks/pleroma/config.ex +++ b/lib/mix/tasks/pleroma/config.ex @@ -138,7 +138,7 @@ defmodule Mix.Tasks.Pleroma.Config do |> Enum.sort() |> Enum.each(&dump(&1)) - shell_error("THIS CANNOT BE UNDONE!") + shell_error("\nTHIS CANNOT BE UNDONE!") if shell_prompt("Are you sure you want to continue?", "n") in ~w(Yn Y y) do Ecto.Adapters.SQL.query!(Repo, "TRUNCATE config;") |