ソースを参照

Fix another filename:join/2 warning. Thanks Kostis

Tuncer Ayaz 14年前
コミット
1712425588
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/rebar_core.erl

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

読み込み中…
キャンセル
保存