diff options
author | Tristan Sloughter <tristan.sloughter@gmail.com> | 2014-12-02 15:55:51 -0600 |
---|---|---|
committer | Tristan Sloughter <tristan.sloughter@gmail.com> | 2014-12-02 15:55:51 -0600 |
commit | 3b2d9ba8c81a41ae5cd554a3f50283e713e191c8 (patch) | |
tree | f5309346fc164fe3556e96db679b32bf5eca5a56 /doc | |
parent | 8d655d3c502295394ab30d9fc3fd11679629885d (diff) | |
parent | 3af351cec28521caaa15308b1a4a992380723794 (diff) |
Merge pull request #31 from tsloughter/profiles
Profiles
Diffstat (limited to 'doc')
-rw-r--r-- | doc/plugins.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/plugins.md b/doc/plugins.md index ae43355..c8afc91 100644 --- a/doc/plugins.md +++ b/doc/plugins.md @@ -220,7 +220,7 @@ And then we can implement the switch to figure out what to search: do(State) -> Apps = case discovery_type(State) of project -> rebar_state:project_apps(State); - deps -> rebar_state:project_apps(State) ++ rebar_state:src_deps(State) + deps -> rebar_state:project_apps(State) ++ rebar_state:all_deps(State) end, lists:foreach(fun check_todo_app/1, Apps), {ok, State}. |