Use Mix.shell().yes? if available

stable
rinpatch 5 years ago
parent d7ec0898e5
commit 7223c1b643

@ -37,7 +37,9 @@ defmodule Mix.Tasks.Pleroma.Common 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

Loading…
Cancel
Save