mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +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"),
|
||||
EbinDir = filename:absname(filename:join(Cwd, "ebin")),
|
||||
IncludeDir = filename:join(Cwd, "include"),
|
||||
case filelib:is_dir(IncludeDir) of
|
||||
Include = case filelib:is_dir(IncludeDir) of
|
||||
true ->
|
||||
Include = " -include \"" ++ IncludeDir ++ "\"";
|
||||
" -include \"" ++ IncludeDir ++ "\"";
|
||||
false ->
|
||||
Include = ""
|
||||
""
|
||||
end,
|
||||
|
||||
%% Add the code path of the rebar process to the code path. This
|
||||
|
|
Loading…
Reference in a new issue