summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJared Morrow <jared@basho.com>2013-12-03 13:10:05 -0800
committerJared Morrow <jared@basho.com>2013-12-03 13:10:05 -0800
commitc02fcec92c19b8c184a09a9f367fe919222e96fb (patch)
tree5c0f55f6c19949d114ffc35adee8b5df05d22f06
parentdac4f9245d7e82263763c9d8a1112cb2dbe6d8f1 (diff)
parent37310820f7d1c74b8eab14760f0f8ee67734323d (diff)
downloadrebar-c02fcec92c19b8c184a09a9f367fe919222e96fb.tar.gz
Merge pull request #174 from tuncer/dialyzer-fixes
rebar_core: fix Dialyzer warning introduced in aa46d85 (#157)
-rw-r--r--src/rebar_core.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl
index 55778b7..631cef2 100644
--- a/src/rebar_core.erl
+++ b/src/rebar_core.erl
@@ -411,7 +411,7 @@ restore_code_path(no_change) ->
restore_code_path({added, Paths}) ->
%% Verify that all of the paths still exist -- some dynamically
%% added paths can get blown away during clean.
- [code:del_path(F) || F <- Paths, erl_prim_loader_is_file(F)],
+ _ = [code:del_path(F) || F <- Paths, erl_prim_loader_is_file(F)],
ok.
erl_prim_loader_is_file(File) ->