Skip to content

Commit

Permalink
erlc: fix comment
Browse files Browse the repository at this point in the history
test_compile/3 is used by eunit and qc, but the comment was only
referring to 'rebar eunit'.
  • Loading branch information
Tuncer Ayaz committed Mar 5, 2014
1 parent 077f8e0 commit c26b0c7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/rebar_erlc_compiler.erl
Expand Up @@ -146,12 +146,13 @@ test_compile(Config, Cmd, OutDir) ->
lists:append(Acc, Files)
end, [], SrcDirs),

%% If it is not the first time rebar eunit is executed, there will be source
%% files already present in OutDir. Since some SCMs (like Perforce) set
%% the source files as being read only (unless they are checked out), we
%% need to be sure that the files already present in OutDir are writable
%% before doing the copy. This is done here by removing any file that was
%% already present before calling rebar_file_utils:cp_r.
%% If it is not the first time rebar eunit or rebar qc is executed,
%% there will be source files already present in OutDir. Since some
%% SCMs (like Perforce) set the source files as being read only (unless
%% they are checked out), we need to be sure that the files already
%% present in OutDir are writable before doing the copy. This is done
%% here by removing any file that was already present before calling
%% rebar_file_utils:cp_r.

%% Get the full path to a file that was previously copied in OutDir
ToCleanUp = fun(F, Acc) ->
Expand Down

0 comments on commit c26b0c7

Please sign in to comment.