diff options
author | rinpatch <rinpatch@sdf.org> | 2020-02-25 21:59:37 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-02-25 21:59:37 +0300 |
commit | cfa28dee32d3608cab2e2fb42a59c50f3cc0c083 (patch) | |
tree | b32da0b62ce61303028da0b33d6a1527642c2975 /lib | |
parent | 2cd253f6d5a82b2ceba6f135bfc2094c7881342d (diff) | |
download | pleroma-cfa28dee32d3608cab2e2fb42a59c50f3cc0c083.tar.gz |
instance.gen task: make instance name default to the domain
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mix/tasks/pleroma/instance.ex | 3 |
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?") |