summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rebar.config2
-rw-r--r--src/rebar_utils.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/rebar.config b/rebar.config
index 6a83a37..77fe225 100644
--- a/rebar.config
+++ b/rebar.config
@@ -45,7 +45,7 @@
%% Profiles
{profiles, [{test, [
- {deps, [{meck, "0.8.12"}]},
+ {deps, [{meck, "0.8.13"}]},
{erl_opts, [debug_info, nowarn_export_all]}
]
},
diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl
index c920e46..6e5e934 100644
--- a/src/rebar_utils.erl
+++ b/src/rebar_utils.erl
@@ -972,7 +972,7 @@ get_proxy_auth() ->
{ok, ProxyAuth} -> ProxyAuth
end.
--spec rebar_utils:is_list_of_strings(term()) -> boolean().
+-spec is_list_of_strings(term()) -> boolean().
is_list_of_strings(List) when not is_list(hd(List)) ->
false;
is_list_of_strings(List) when is_list(hd(List)) ->