mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Unused vars
This commit is contained in:
parent
780b85c11e
commit
f23af3ac50
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@
|
||||||
%% Public API
|
%% Public API
|
||||||
%% ===================================================================
|
%% ===================================================================
|
||||||
|
|
||||||
preprocess(Config, AppFile) ->
|
preprocess(Config, _) ->
|
||||||
%% Side effect to set deps_dir globally for all dependencies from
|
%% Side effect to set deps_dir globally for all dependencies from
|
||||||
%% top level down. Means the root deps_dir is honoured or the default
|
%% top level down. Means the root deps_dir is honoured or the default
|
||||||
%% used globally since it will be set on the first time through here
|
%% used globally since it will be set on the first time through here
|
||||||
|
@ -196,7 +196,7 @@ do_check_deps(Config) ->
|
||||||
%% the necessary transitivity of the deps
|
%% the necessary transitivity of the deps
|
||||||
{ok, save_dep_dirs(Config2, lists:reverse(PulledDeps))}.
|
{ok, save_dep_dirs(Config2, lists:reverse(PulledDeps))}.
|
||||||
|
|
||||||
'update-deps'(Config, AppFile) ->
|
'update-deps'(Config, _) ->
|
||||||
SubDirs = collect_subdirs(rebar_utils:get_cwd(), Config),
|
SubDirs = collect_subdirs(rebar_utils:get_cwd(), Config),
|
||||||
|
|
||||||
{UpdatedDeps, DepOwners} = lists:foldl(fun(Dir, {UpdatedDepsAcc, DepOwnersAcc}) ->
|
{UpdatedDeps, DepOwners} = lists:foldl(fun(Dir, {UpdatedDepsAcc, DepOwnersAcc}) ->
|
||||||
|
|
Loading…
Reference in a new issue