File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ defmodule Mix.Tasks.Compile.Erlang do
88
99 @ recursive true
1010 @ manifest "compile.erlang"
11- @ switches [ force: :boolean , all_warnings: :boolean ]
11+ @ switches [ force: :boolean , verbose: :boolean , all_warnings: :boolean ]
1212
1313 @ moduledoc """
1414 Compiles Erlang source files.
@@ -23,6 +23,7 @@ defmodule Mix.Tasks.Compile.Erlang do
2323 * `--all-warnings` (`--no-all-warnings`) - prints all warnings, including previous compilations
2424 (default is true except on errors)
2525 * `--force` - forces compilation regardless of modification times
26+ * `--verbose` - prints verbose output
2627
2728 ## Configuration
2829
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ defmodule Mix.Tasks.Compile.Leex do
3030 * `--all-warnings` (`--no-all-warnings`) - prints all warnings, including previous compilations
3131 (default is true except on errors)
3232 * `--force` - forces compilation regardless of modification times
33+ * `--verbose` - prints verbose output
3334
3435 ## Configuration
3536
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ defmodule Mix.Tasks.Compile.Yecc do
88
99 @ recursive true
1010 @ manifest "compile.yecc"
11- @ switches [ force: :boolean , all_warnings: :boolean ]
11+ @ switches [ force: :boolean , verbose: :boolean , all_warnings: :boolean ]
1212
1313 # These options can't be controlled with :yecc_options.
1414 @ forced_opts [ report: true , return: true ]
@@ -30,6 +30,7 @@ defmodule Mix.Tasks.Compile.Yecc do
3030 * `--all-warnings` (`--no-all-warnings`) - prints all warnings, including previous compilations
3131 (default is true except on errors)
3232 * `--force` - forces compilation regardless of modification times
33+ * `--verbose` - prints verbose output
3334
3435 ## Configuration
3536
You can’t perform that action at this time.
0 commit comments