mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Merge pull request #471 from tuncer/formatting-fixes-2
Fix whitespace errors
This commit is contained in:
commit
99f8580678
1 changed files with 4 additions and 2 deletions
|
@ -309,9 +309,11 @@ collect_glob(Config, Cwd, Glob) ->
|
||||||
%% There is a directory named "deps" in path
|
%% There is a directory named "deps" in path
|
||||||
Acc;
|
Acc;
|
||||||
false ->
|
false ->
|
||||||
[F | Acc] % No "deps" directory in path
|
%% No "deps" directory in path
|
||||||
|
[F | Acc]
|
||||||
end
|
end
|
||||||
end, []).
|
end,
|
||||||
|
[]).
|
||||||
|
|
||||||
remove_common_prefix([H1|T1], [H1|T2]) ->
|
remove_common_prefix([H1|T1], [H1|T2]) ->
|
||||||
remove_common_prefix(T1, T2);
|
remove_common_prefix(T1, T2);
|
||||||
|
|
Loading…
Reference in a new issue