diff options
author | Norbert Preining <preining@logic.at> | 2009-07-03 17:09:57 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-07-03 17:09:57 +0000 |
commit | 5000ffc09aa4ec0946b5009d554054b2dc9861b2 (patch) | |
tree | 8126a91cfb85f7468cb4a38bf82199ce1965250f | |
parent | 95da6e7cf83e9cf42f4af857f8a23295796d935a (diff) |
fix running of all checks
git-svn-id: svn://tug.org/texlive/trunk@14087 c570f23f-e606-0410-a88d-b1316a301751
-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"; } |