diff options
Diffstat (limited to 'Master/tlpkg/TeXLive/TLPOBJ.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPOBJ.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm index b1f859b9166..17dd6a408a2 100644 --- a/Master/tlpkg/TeXLive/TLPOBJ.pm +++ b/Master/tlpkg/TeXLive/TLPOBJ.pm @@ -603,10 +603,10 @@ sub make_container { open ZIP, "|-", @cmdline or die "Cannot open container program @cmdline: $!"; } map { - if (! -e $_) { - print STDERR "!!!Error: non-existent $_\n"; - } else { + if (-f $_ || -l $_) { print ZIP "$_\n"; + } else { + print STDERR "!!!Error: non-existent $_\n"; } } @files; close ZIP; |