summaryrefslogtreecommitdiff
path: root/src/rebar_app_discover.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-09-01 17:48:04 -0500
committerTristan Sloughter <t@crashfast.com>2015-09-01 17:48:04 -0500
commitd034f40c38753860c2da894f1966af5399f3efce (patch)
tree586cb586777bf613f84c5663d22ad4d346d39723 /src/rebar_app_discover.erl
parentb2c051452e336f9727b0f93ddb2f1abe970ed325 (diff)
move opts functions to new module rebar_opts
Diffstat (limited to 'src/rebar_app_discover.erl')
-rw-r--r--src/rebar_app_discover.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_app_discover.erl b/src/rebar_app_discover.erl
index 1052774..e702786 100644
--- a/src/rebar_app_discover.erl
+++ b/src/rebar_app_discover.erl
@@ -138,7 +138,7 @@ maybe_reset_hooks(C, Dir, State) ->
reset_hooks(Opts) ->
lists:foldl(fun(Key, OptsAcc) ->
- rebar_utils:set(OptsAcc, Key, [])
+ rebar_opts:set(OptsAcc, Key, [])
end, Opts, [post_hooks, pre_hooks, provider_hooks, artifacts]).
-spec all_app_dirs(list(file:name())) -> list(file:name()).