summaryrefslogtreecommitdiff
path: root/src/rebar_utils.erl
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-08-09 16:14:42 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-08-09 16:14:42 +0200
commit16091f99345ea97599a63be277f4d48f1b8ff2dc (patch)
tree2678853923516bd66f85c491d12779c6fe599f16 /src/rebar_utils.erl
parent147b1a07980fddd1db551399448c5217e4d13ead (diff)
rebar_utils: fix whitespace error
Diffstat (limited to 'src/rebar_utils.erl')
-rw-r--r--src/rebar_utils.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl
index a39e263..9a5daeb 100644
--- a/src/rebar_utils.erl
+++ b/src/rebar_utils.erl
@@ -177,7 +177,7 @@ prop_check(false, Msg, Args) -> ?ABORT(Msg, Args).
%% Convert all the entries in the code path to absolute paths.
expand_code_path() ->
- CodePath = lists:foldl(fun (Path, Acc) ->
+ CodePath = lists:foldl(fun(Path, Acc) ->
[filename:absname(Path) | Acc]
end, [], code:get_path()),
code:set_path(lists:reverse(CodePath)).