summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-06-12 22:02:32 +0000
committerKarl Berry <karl@freefriends.org>2021-06-12 22:02:32 +0000
commit42e124b269400af32147f760c78fdb24d8320dd0 (patch)
treeb2236725b27ee1e37d656b836ed8062c44a44689 /Master/texmf-dist/scripts
parentbdec76c718a49ea663ffccad8cf864fb396a63d6 (diff)
(do_cmd_and_check): don't output "done running"
line if the cmd =~ /^fmtutil/, since now we output specific return info from fmtutil calls. git-svn-id: svn://tug.org/texlive/trunk@59568 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgr.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl
index 578cd120cb4..75b3865f681 100755
--- a/Master/texmf-dist/scripts/texlive/tlmgr.pl
+++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl
@@ -853,7 +853,7 @@ sub do_cmd_and_check {
$out =~ s/\n+$//; # trailing newlines don't seem interesting
my $outmsg = "output:\n$out\n--end of output of $cmd.\n";
if ($ret == $F_OK) {
- info("done running $cmd.\n");
+ info("done running $cmd.\n") unless $cmd =~ /^fmtutil/;
logcommand("success, $outmsg");
ddebug("$cmd $outmsg");
return ($F_OK);