Преглед изворни кода

Don't badmatch if a path we think we added isn't in the code path

pull/3/head
Andrew Thompson пре 11 година
родитељ
комит
aa46d85849
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/rebar_core.erl

+ 1
- 1
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.
[true = 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) ->

Loading…
Откажи
Сачувај