diff options
author | Norbert Preining <preining@logic.at> | 2008-05-11 20:02:52 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-05-11 20:02:52 +0000 |
commit | 5304c604bb88206d6da744c843976c8492a46998 (patch) | |
tree | 9d4778d74f57db335a9aac5ce419ecdd51b485be /Master | |
parent | 020fd23e346b1ffbe03ccb3a0bbae814d2e1379d (diff) |
another fix for rollback on win32
git-svn-id: svn://tug.org/texlive/trunk@8066 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index ea69e67a10b..173fc5e5a52 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -912,6 +912,8 @@ sub removed_dirs # construct hash of all directories mentioned, values are lists of the # files/dirs in that directory. for my $f (@files) { + # what should we do with not existing entries???? + next if (! -r "$f"); my $abs_f = abs_path ($f); if (!$abs_f) { warn ("oops, no abs_path($f) from " . `pwd`); |