From a56fa2bb7e691bb569efe8e848763538e5766ee1 Mon Sep 17 00:00:00 2001 From: Stavros Aronis Date: Mon, 28 Feb 2011 17:02:30 +0200 Subject: Write output_plt even when plt_check is ok --- lib/dialyzer/src/dialyzer_cl.erl | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/dialyzer/src/dialyzer_cl.erl') diff --git a/lib/dialyzer/src/dialyzer_cl.erl b/lib/dialyzer/src/dialyzer_cl.erl index 1987c1732c..2a9de7886f 100644 --- a/lib/dialyzer/src/dialyzer_cl.erl +++ b/lib/dialyzer/src/dialyzer_cl.erl @@ -188,6 +188,12 @@ init_opts_for_remove(Opts) -> plt_common(#options{init_plts = [InitPlt]} = Opts, RemoveFiles, AddFiles) -> case check_plt(Opts, RemoveFiles, AddFiles) of ok -> + case Opts#options.output_plt of + none -> ok; + OutPlt -> + {ok, Binary} = file:read_file(InitPlt), + file:write_file(OutPlt, Binary) + end, case Opts#options.report_mode of quiet -> ok; _ -> io:put_chars(" yes\n") -- cgit v1.2.3