diff options
author | José Valim <jose.valim@dashbit.co> | 2021-07-15 20:50:49 +0200 |
---|---|---|
committer | José Valim <jose.valim@dashbit.co> | 2021-07-15 20:53:18 +0200 |
commit | 6b5a9b6b4cf05ed217de405cff0fb4f0041adddc (patch) | |
tree | 9f22c776cea000196607e585217750f4cca88fda /bin | |
parent | 2903f18a4ce91031ef472dd114f265e268b15d59 (diff) | |
download | elixir-6b5a9b6b4cf05ed217de405cff0fb4f0041adddc.tar.gz |
Rename exit_code to exit_status for consistency
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/elixirc | 2 | ||||
-rw-r--r-- | bin/elixirc.bat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/elixirc b/bin/elixirc index 72c7ddaca..23bb5a644 100755 --- a/bin/elixirc +++ b/bin/elixirc @@ -14,7 +14,7 @@ Usage: $(basename "$0") [elixir switches] [compiler switches] [.ex files] --no-docs Does not attach documentation to compiled modules --profile time Profile the time to compile modules --verbose Prints compilation status - --warnings-as-errors Treats warnings as errors and return non-zero exit code + --warnings-as-errors Treats warnings as errors and return non-zero exit status Options given after -- are passed down to the executed code. Options can be passed to the Erlang runtime using \$ELIXIR_ERL_OPTIONS. diff --git a/bin/elixirc.bat b/bin/elixirc.bat index bb6bf4738..a559d1349 100644 --- a/bin/elixirc.bat +++ b/bin/elixirc.bat @@ -23,7 +23,7 @@ echo --no-debug-info Does not attach debug info to compiled modules echo --no-docs Does not attach documentation to compiled modules echo --profile time Profile the time to compile modules echo --verbose Prints compilation status -echo --warnings-as-errors Treats warnings as errors and returns non-zero exit code +echo --warnings-as-errors Treats warnings as errors and returns non-zero exit status echo. echo ** Options given after -- are passed down to the executed code echo ** Options can be passed to the Erlang runtime using ELIXIR_ERL_OPTIONS |