diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-07-21 19:13:09 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-07-21 19:17:41 -0500 |
commit | 45578aedfcbbb50099e04ee280493540491aac2f (patch) | |
tree | 903cd259e888ca9b941c0daf385c2abd86e75e2d /src | |
parent | d5ed09b24802b80b7ec2daa33420f809e1b30d0e (diff) |
run edoc provider in docs provider
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_prv_edoc.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_prv_edoc.erl b/src/rebar_prv_edoc.erl index 14df269..e7048b6 100644 --- a/src/rebar_prv_edoc.erl +++ b/src/rebar_prv_edoc.erl @@ -24,7 +24,8 @@ init(State) -> {example, "rebar3 edoc"}, {short_desc, "Generate documentation using edoc."}, {desc, "Generate documentation using edoc."}, - {opts, []}])), + {opts, []}, + {profiles, [docs]}])), {ok, State1}. -spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}. |