We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4d5da2 commit 92094c9Copy full SHA for 92094c9
1 file changed
lib/mix/lib/mix/tasks/compile.app.ex
@@ -214,7 +214,11 @@ defmodule Mix.Tasks.Compile.App do
214
end
215
216
defp to_erl_term(list) when is_list(list) do
217
- [?[, to_erl_head(list), ?]]
+ if List.ascii_printable?(list) do
218
+ :io_lib.print(list)
219
+ else
220
+ [?[, to_erl_head(list), ?]]
221
+ end
222
223
224
defp to_erl_term(map) when is_map(map) do
0 commit comments