summaryrefslogtreecommitdiff
path: root/src/rebar_state.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar_state.erl')
-rw-r--r--src/rebar_state.erl5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rebar_state.erl b/src/rebar_state.erl
index da0c9d8..a1aefab 100644
--- a/src/rebar_state.erl
+++ b/src/rebar_state.erl
@@ -33,9 +33,9 @@
envs = new_env() :: rebar_dict(),
command_args = [] :: list(),
- src_deps = [] :: [rebar_app_info:t()],
+ src_deps = ordsets:new() :: ordsets:ordset(rebar_app_info:t()),
binary_deps = [],
- project_apps = [],
+ project_apps = ordsets:new() :: ordsets:ordset(rebar_app_info:t()),
providers = [],
skip_dirs = new_skip_dirs() :: rebar_dict() }).
@@ -106,7 +106,6 @@ command_args(#state_t{command_args=CmdArgs}) ->
command_args(State, CmdArgs) ->
State#state_t{command_args=CmdArgs}.
-
deps_names(State) ->
Deps = rebar_state:get(State, deps, []),
lists:map(fun(Dep) when is_tuple(Dep) ->