mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 11:06:20 +00:00
Fix ct include option prefix
This commit is contained in:
parent
6a7fc05cb4
commit
cd3653616b
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ make_cmd(TestDir, Config) ->
|
||||||
IncludeDir = filename:join(Cwd, "include"),
|
IncludeDir = filename:join(Cwd, "include"),
|
||||||
case filelib:is_dir(IncludeDir) of
|
case filelib:is_dir(IncludeDir) of
|
||||||
true ->
|
true ->
|
||||||
Include = " -I \"" ++ IncludeDir ++ "\"";
|
Include = " -include \"" ++ IncludeDir ++ "\"";
|
||||||
false ->
|
false ->
|
||||||
Include = ""
|
Include = ""
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in a new issue