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
8
8
9
9
@ recursive true
10
10
@ manifest "compile.erlang"
11
- @ switches [ force: :boolean , all_warnings: :boolean ]
11
+ @ switches [ force: :boolean , verbose: :boolean , all_warnings: :boolean ]
12
12
13
13
@ moduledoc """
14
14
Compiles Erlang source files.
@@ -23,6 +23,7 @@ defmodule Mix.Tasks.Compile.Erlang do
23
23
* `--all-warnings` (`--no-all-warnings`) - prints all warnings, including previous compilations
24
24
(default is true except on errors)
25
25
* `--force` - forces compilation regardless of modification times
26
+ * `--verbose` - prints verbose output
26
27
27
28
## Configuration
28
29
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ defmodule Mix.Tasks.Compile.Leex do
30
30
* `--all-warnings` (`--no-all-warnings`) - prints all warnings, including previous compilations
31
31
(default is true except on errors)
32
32
* `--force` - forces compilation regardless of modification times
33
+ * `--verbose` - prints verbose output
33
34
34
35
## Configuration
35
36
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ defmodule Mix.Tasks.Compile.Yecc do
8
8
9
9
@ recursive true
10
10
@ manifest "compile.yecc"
11
- @ switches [ force: :boolean , all_warnings: :boolean ]
11
+ @ switches [ force: :boolean , verbose: :boolean , all_warnings: :boolean ]
12
12
13
13
# These options can't be controlled with :yecc_options.
14
14
@ forced_opts [ report: true , return: true ]
@@ -30,6 +30,7 @@ defmodule Mix.Tasks.Compile.Yecc do
30
30
* `--all-warnings` (`--no-all-warnings`) - prints all warnings, including previous compilations
31
31
(default is true except on errors)
32
32
* `--force` - forces compilation regardless of modification times
33
+ * `--verbose` - prints verbose output
33
34
34
35
## Configuration
35
36
You can’t perform that action at this time.
0 commit comments