forked from AkkomaGang/akkoma
Rename def to defval
This commit is contained in:
parent
1d11c4cf11
commit
08e10a70ec
1 changed files with 5 additions and 5 deletions
|
@ -4,13 +4,13 @@ def start_pleroma do
|
|||
Mix.Task.run("app.start")
|
||||
end
|
||||
|
||||
def get_option(options, opt, prompt, def \\ nil, defname \\ nil) do
|
||||
def get_option(options, opt, prompt, defval \\ nil, defname \\ nil) do
|
||||
Keyword.get(options, opt) ||
|
||||
case Mix.shell().prompt("#{prompt} [#{defname || def}]") do
|
||||
case Mix.shell().prompt("#{prompt} [#{defname || defval}]") do
|
||||
"\n" ->
|
||||
case def do
|
||||
nil -> get_option(options, opt, prompt, def)
|
||||
def -> def
|
||||
case defval do
|
||||
nil -> get_option(options, opt, prompt, defval)
|
||||
defval -> defval
|
||||
end
|
||||
|
||||
opt ->
|
||||
|
|
Loading…
Reference in a new issue