From 78687655bbf462ba23457298505dedbfd8c89e5e Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Thu, 22 Apr 2021 00:45:26 +0000 Subject: tlmgr: fmtutil reporting, small changes git-svn-id: svn://tug.org/texlive/trunk@58955 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/scripts/texlive/tlmgr.pl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index d4eea6c0af2..55350a58316 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -878,7 +878,7 @@ sub handle_execute_actions { my $sysmode = ($opts{"usermode"} ? "-user" : "-sys"); my $fmtutil_cmd = "fmtutil$sysmode"; my $status_file = TeXLive::TLUtils::tl_tmpfile(); - my $fmtutil_args = "$common_fmtutil_args --status-file $status_file"; + my $fmtutil_args = "$common_fmtutil_args --status-file=$status_file"; # of create_formats is unset (NOT the default) we add --refresh so that @@ -1066,9 +1066,9 @@ sub read_and_report_fmtutil_status_file { } elsif ($status eq "NOTSELECTED") { # ignore for now } elsif ($status eq "FAILURE") { - push @failed, "$fmt/$eng"; + push @failed, "${fmt}.fmt/$eng"; } elsif ($status eq "SUCCESS") { - push @success, "$fmt/$eng"; + push @success, "${fmt}.fmt/$eng"; } elsif ($status eq "NOTAVAIL") { # ignore for now } elsif ($status eq "UNKNOWN") { @@ -1077,10 +1077,10 @@ sub read_and_report_fmtutil_status_file { # ignore for now } } - logpackage(" OK: @success\n") if (@success); - logpackage(" ERROR: @failed\n") if (@failed); - logcommand(" OK: @success\n") if (@success); - logcommand(" ERROR: @failed\n") if (@failed); + logpackage(" OK: @success") if (@success); + logpackage(" ERROR: @failed") if (@failed); + logcommand(" OK: @success") if (@success); + logcommand(" ERROR: @failed") if (@failed); info(" OK: @success\n") if (@success); info(" ERROR: @failed\n") if (@failed); } -- cgit v1.2.3