summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2020-02-25 21:59:37 +0300
committerrinpatch <rinpatch@sdf.org>2020-02-25 21:59:37 +0300
commitcfa28dee32d3608cab2e2fb42a59c50f3cc0c083 (patch)
treeb32da0b62ce61303028da0b33d6a1527642c2975
parent2cd253f6d5a82b2ceba6f135bfc2094c7881342d (diff)
instance.gen task: make instance name default to the domain
-rw-r--r--lib/mix/tasks/pleroma/instance.ex3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/mix/tasks/pleroma/instance.ex b/lib/mix/tasks/pleroma/instance.ex
index 2d8b8d673..fee2ab9d9 100644
--- a/lib/mix/tasks/pleroma/instance.ex
+++ b/lib/mix/tasks/pleroma/instance.ex
@@ -65,7 +65,8 @@ defmodule Mix.Tasks.Pleroma.Instance do
get_option(
options,
:instance_name,
- "What is the name of your instance? (e.g. Pleroma/Soykaf)"
+ "What is the name of your instance? (e.g. Pleroma/Soykaf)",
+ domain
)
email = get_option(options, :admin_email, "What is your admin email address?")