Use Mix.shell().yes? if available

This commit is contained in:
rinpatch 2019-06-08 20:10:25 +03:00
parent d7ec0898e5
commit 7223c1b643
1 changed files with 3 additions and 1 deletions

View File

@ -37,7 +37,9 @@ def shell_prompt(prompt, defval \\ nil, defname \\ nil) do
end
def shell_yes?(message) do
shell_prompt(message, "Yn") in ~w(Yn Y y)
if mix_shell?(),
do: Mix.shell().yes?("Continue?"),
else: shell_prompt(message, "Continue?") in ~w(Yn Y y)
end
def shell_info(message) do