Use lists:foreach because result is ignored

This commit is contained in:
Tuncer Ayaz 2012-06-30 23:17:22 +02:00
parent 385e3f09ba
commit fd0697239d

View file

@ -62,7 +62,8 @@
%% Build a list of available templates
AvailTemplates = find_disk_templates() ++ find_escript_templates(),
?CONSOLE("Available templates:\n", []),
_ = [begin
lists:foreach(
fun({Type, F}) ->
BaseName = filename:basename(F, ".template"),
TemplateTerms = consult(load_file(Type, F)),
{_, VarList} = lists:keyfind(variables, 1, TemplateTerms),
@ -71,7 +72,7 @@
end, [], VarList),
?CONSOLE(" * ~s: ~s (~p) (variables: ~p)\n",
[BaseName, F, Type, string:join(Vars, ", ")])
end || {Type, F} <- AvailTemplates],
end, AvailTemplates),
ok.