diff options
author | Norbert Preining <preining@logic.at> | 2021-04-22 00:45:26 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2021-04-22 00:45:26 +0000 |
commit | 78687655bbf462ba23457298505dedbfd8c89e5e (patch) | |
tree | d6064e09f147c89e59edb6e05117424959d19f9e | |
parent | 22c27145c9e4edaa7a72bbfda5c45f81272e51fa (diff) |
tlmgr: fmtutil reporting, small changes
git-svn-id: svn://tug.org/texlive/trunk@58955 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 14 |
1 files 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); } |