From fe4a62cb18293024fbb4bf89a2188d7d6c3075c5 Mon Sep 17 00:00:00 2001 From: Tuncer Ayaz Date: Thu, 2 Apr 2015 16:21:20 +0200 Subject: [PATCH] Fix whitespace errors --- src/rebar_ct.erl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/rebar_ct.erl b/src/rebar_ct.erl index c44fa63..480f7f0 100644 --- a/src/rebar_ct.erl +++ b/src/rebar_ct.erl @@ -309,9 +309,11 @@ collect_glob(Config, Cwd, Glob) -> %% There is a directory named "deps" in path Acc; false -> - [F | Acc] % No "deps" directory in path + %% No "deps" directory in path + [F | Acc] end - end, []). + end, + []). remove_common_prefix([H1|T1], [H1|T2]) -> remove_common_prefix(T1, T2);