diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-10-01 13:39:02 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-10-01 13:39:02 +0200 |
commit | 171242558829ddbea35d5649cbe14f99dc9537e9 (patch) | |
tree | 4b3fa9e4e0646fead1ca8e24392a4947103de612 /src | |
parent | 3e6f8cac12efee10778ee8698c09367bc5606262 (diff) |
Fix another filename:join/2 warning. Thanks Kostis
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_core.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl index c0d70dd..d2459fe 100644 --- a/src/rebar_core.erl +++ b/src/rebar_core.erl @@ -472,7 +472,7 @@ restore_code_path({old, Path}) -> expand_lib_dirs([], _Root, Acc) -> 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], expand_lib_dirs(Rest, Root, Acc ++ FqApps). |