From 6d61e3590de57841cd132701afe1507558f2fe03 Mon Sep 17 00:00:00 2001 From: Badlop Date: Tue, 19 Dec 2023 22:44:25 +0100 Subject: [PATCH] Mix: Print shell commands output to the console when "make dev" --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 96c4f5ecd..cf968a764 100644 --- a/mix.exs +++ b/mix.exs @@ -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