Procházet zdrojové kódy

rebar_utils: fix whitespace error

pull/3/head
Tuncer Ayaz před 13 roky
rodič
revize
16091f9934
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/rebar_utils.erl

+ 1
- 1
src/rebar_utils.erl Zobrazit soubor

@ -177,7 +177,7 @@ prop_check(false, Msg, Args) -> ?ABORT(Msg, Args).
%% Convert all the entries in the code path to absolute paths. %% Convert all the entries in the code path to absolute paths.
expand_code_path() -> expand_code_path() ->
CodePath = lists:foldl(fun (Path, Acc) ->
CodePath = lists:foldl(fun(Path, Acc) ->
[filename:absname(Path) | Acc] [filename:absname(Path) | Acc]
end, [], code:get_path()), end, [], code:get_path()),
code:set_path(lists:reverse(CodePath)). code:set_path(lists:reverse(CodePath)).

Načítá se…
Zrušit
Uložit