Skip to content

Commit 9c549b3

Browse files
author
José Valim
committed
Fix help for elixirc executables, closes #2380
1 parent 04194a1 commit 9c549b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/elixirc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [ $# -eq 0 ] || [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
1111
1212
** Options given after -- are passed down to the executed code
1313
** Options can be passed to the erlang runtime using ELIXIR_ERL_OPTIONS
14-
** Options can be passed to the erlang compiler using ERL_COMPILER_OPTS" >&2
14+
** Options can be passed to the erlang compiler using ERL_COMPILER_OPTIONS" >&2
1515
exit 1
1616
fi
1717

bin/elixirc.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ echo --verbose Print informational messages.
2121
echo.
2222
echo ** Options given after -- are passed down to the executed code
2323
echo ** Options can be passed to the erlang runtime using ELIXIR_ERL_OPTIONS
24-
echo ** Options can be passed to the erlang compiler using ERL_COMPILER_OPTS >&2
24+
echo ** Options can be passed to the erlang compiler using ERL_COMPILER_OPTIONS >&2
2525
:run
2626
call "%~dp0\elixir.bat" +elixirc %*

0 commit comments

Comments
 (0)