Browse Source

Fix another filename:join/2 warning. Thanks Kostis

Tuncer Ayaz 14 years ago
parent
commit
1712425588
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_core.erl

+ 1
- 1
src/rebar_core.erl View File

@ -472,7 +472,7 @@ restore_code_path({old, Path}) ->
expand_lib_dirs([], _Root, Acc) -> expand_lib_dirs([], _Root, Acc) ->
Acc; Acc;
expand_lib_dirs([Dir | Rest], Root, Acc) -> expand_lib_dirs([Dir | Rest], Root, Acc) ->
Apps = filelib:wildcard(filename:join([Dir, '*';, ebin])),
Apps = filelib:wildcard(filename:join([Dir, "*";, ebin])),
FqApps = [filename:join([Root, A]) || A <- Apps], FqApps = [filename:join([Root, A]) || A <- Apps],
expand_lib_dirs(Rest, Root, Acc ++ FqApps). expand_lib_dirs(Rest, Root, Acc ++ FqApps).

Loading…
Cancel
Save