Skip to content

Commit 789a657

Browse files
author
José Valim
committed
Merge pull request #2371 from zambal/master
Fix operator precedence bug in Mix.Compilers.Elixir.clean/1
2 parents e4a9fae + 2ee44eb commit 789a657

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mix/lib/mix/compilers/elixir.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ defmodule Mix.Compilers.Elixir do
6161
{:ok, contents} ->
6262
contents
6363
|> String.split("\n")
64-
|> Enum.each(& &1 |> String.split("\t") |> hd |> File.rm)
64+
|> Enum.each &(&1 |> String.split("\t") |> hd |> File.rm)
6565
File.rm(manifest)
6666
{:error, _} ->
6767
:ok

0 commit comments

Comments
 (0)