diff options
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 397c95ae950..b02e537939d 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -2434,22 +2434,26 @@ sub action_check { my $ret = 0; if ($what =~ m/^all/i) { my $tltree = init_tltree($svn); - $ret ||= check_files($tltree); - $ret ||= check_depends(); - $ret ||= check_executes(); - $ret ||= check_runfiles(); + print "Running check files:\n"; + $ret |= check_files($tltree); + print "Running check depends:\n"; + $ret |= check_depends(); + print "Running check executes:\n"; + $ret |= check_executes(); + print "Running check runfiles:\n"; + $ret |= check_runfiles(); } elsif ($what =~ m/^files/i) { my $tltree = init_tltree($svn); - $ret ||= check_files($tltree); + $ret |= check_files($tltree); } elsif ($what =~ m/^collections/i) { tlwarn("the \"collections\" check is replaced by the \"depends\" check.\n"); - $ret ||= check_depends(); + $ret |= check_depends(); } elsif ($what =~ m/^depends/i) { - $ret ||= check_depends(); + $ret |= check_depends(); } elsif ($what =~ m/^runfiles/i) { - $ret ||= check_runfiles(); + $ret |= check_runfiles(); } elsif ($what =~ m/^executes/i) { - $ret ||= check_executes(); + $ret |= check_executes(); } else { print "No idea how to check that: $what\n"; } |