mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Fix src_dirs option to not hard-code "src"
This commit is contained in:
parent
33546cc402
commit
4e0c9506f5
1 changed files with 1 additions and 1 deletions
|
@ -321,7 +321,7 @@ gather_src([Dir|Rest], Srcs) ->
|
||||||
src_dirs([]) ->
|
src_dirs([]) ->
|
||||||
["src"];
|
["src"];
|
||||||
src_dirs(SrcDirs) ->
|
src_dirs(SrcDirs) ->
|
||||||
SrcDirs ++ src_dirs([]).
|
SrcDirs.
|
||||||
|
|
||||||
-spec dirs(Dir::file:filename()) -> [file:filename()].
|
-spec dirs(Dir::file:filename()) -> [file:filename()].
|
||||||
dirs(Dir) ->
|
dirs(Dir) ->
|
||||||
|
|
Loading…
Reference in a new issue