File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -1432,7 +1432,10 @@ defmodule Mix.Tasks.Release do
14321432 { "elixir" ,
14331433 & ( & 1
14341434 |> File . read! ( )
1435- |> String . replace ( ~s[ -env ELIXIR_ROOT "$SCRIPT_PATH"/../lib -pa "$SCRIPT_PATH"/../lib/elixir/ebin ] , " " )
1435+ |> String . replace (
1436+ ~s[ -env ELIXIR_ROOT "$SCRIPT_PATH"/../lib -pa "$SCRIPT_PATH"/../lib/elixir/ebin ] ,
1437+ " "
1438+ )
14361439 |> replace_erts_bin ( release , ~s[ "$SCRIPT_PATH"/../../erts-#{ release . erts_version } /bin/] ) ) } ,
14371440 { "iex" , & File . read! / 1 }
14381441 ]
@@ -1443,7 +1446,10 @@ defmodule Mix.Tasks.Release do
14431446 { "elixir.bat" ,
14441447 & ( & 1
14451448 |> File . read! ( )
1446- |> String . replace ( ~s[ -env ELIXIR_ROOT !SCRIPT_PATH!..\\ lib -pa !SCRIPT_PATH!..\\ lib\\ elixir\\ ebin ] , " " )
1449+ |> String . replace (
1450+ ~s[ -env ELIXIR_ROOT !SCRIPT_PATH!..\\ lib -pa !SCRIPT_PATH!..\\ lib\\ elixir\\ ebin ] ,
1451+ " "
1452+ )
14471453 |> replace_erts_bin ( release , ~s[ %~dp0\\ ..\\ ..\\ erts-#{ release . erts_version } \\ bin\\ ] ) ) } ,
14481454 { "iex.bat" , & File . read! / 1 }
14491455 ]
You can’t perform that action at this time.
0 commit comments