Browse Source

Local corrections on string processing:

* Corrected regexp: `[x|y]` -> `[xy]`.
* Used an re:replace/4 option instead of multiple IOlist functions.
pull/3/head
Pierre Fenoll 11 years ago
parent
commit
e3d2142df5
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/rebar_erlc_compiler.erl

+ 1
- 2
src/rebar_erlc_compiler.erl View File

@ -119,8 +119,7 @@ clean(Config, _AppFile) ->
YrlFiles = rebar_utils:find_files("src", "^.*\\.[x|y]rl\$"),
rebar_file_utils:delete_each(
[ binary_to_list(iolist_to_binary(re:replace(F, "\\.[x|y]rl$", ".erl")))
|| F <- YrlFiles ]),
[re:replace(F, "\\.[xy]rl$", ".erl", [{return,list}]) || F <- YrlFiles]),
%% Delete the build graph, if any
rebar_file_utils:rm_rf(erlcinfo_file(Config)),

Loading…
Cancel
Save