Mix: Print shell commands output to the console when "make dev"

This commit is contained in:
Badlop 2023-12-19 22:44:25 +01:00
parent e71650e6ab
commit 6d61e3590d
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ defmodule Ejabberd.MixProject do
execute = fn(command) ->
case function_exported?(System, :shell, 1) do
true ->
System.shell(command)
System.shell(command, into: IO.stream())
false ->
:os.cmd(to_charlist(command))
end