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:
parent
cd3653616b
commit
2ee4899d24
1 changed files with 17 additions and 17 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue