1
0
Fork 0
mirror of https://github.com/correl/rebar.git synced 2024-12-20 03:20:18 +00:00

Fix code clarity and formatting

This commit is contained in:
Tuncer Ayaz 2011-03-22 11:12:57 +01:00
parent cd3653616b
commit 2ee4899d24

View file

@ -125,11 +125,11 @@ make_cmd(TestDir, Config) ->
LogDir = filename:join(Cwd, "logs"), LogDir = filename:join(Cwd, "logs"),
EbinDir = filename:absname(filename:join(Cwd, "ebin")), EbinDir = filename:absname(filename:join(Cwd, "ebin")),
IncludeDir = filename:join(Cwd, "include"), IncludeDir = filename:join(Cwd, "include"),
case filelib:is_dir(IncludeDir) of Include = case filelib:is_dir(IncludeDir) of
true -> true ->
Include = " -include \"" ++ IncludeDir ++ "\""; " -include \"" ++ IncludeDir ++ "\"";
false -> false ->
Include = "" ""
end, end,
%% Add the code path of the rebar process to the code path. This %% Add the code path of the rebar process to the code path. This