We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d3749e commit b027480Copy full SHA for b027480
lib/mix/lib/mix/utils.ex
@@ -497,13 +497,13 @@ defmodule Mix.Utils do
497
escape_dot_string(rest, <<acc::binary, ?\\, ?">>)
498
end
499
500
- defp escape_dot_string(<<char, rest::binary>>, acc) do
501
- escape_dot_string(rest, <<acc::binary, char>>)
502
- end
503
-
504
defp escape_dot_string(<<?\\>>, acc) do
505
<<acc::binary, ?\\, ?\\, ?">>
506
+
+ defp escape_dot_string(<<char, rest::binary>>, acc) do
+ escape_dot_string(rest, <<acc::binary, char>>)
+ end
507
508
defp escape_dot_string(<<>>, acc) do
509
<<acc::binary, ?">>
0 commit comments