summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-09-14 15:38:18 +0000
committerKarl Berry <karl@freefriends.org>2022-09-14 15:38:18 +0000
commit732ae3fbb7543a76e6ed337dcc853e4dec34efbb (patch)
tree997cea8b73aad4252db3b95411e4e145408c7d2f /Master/tlpkg
parent1040ec4ab43659eabf6281bc7cb414dc222ec071 (diff)
(make_container): try to do ls -l as warning if something is
neither a file or a symlink (what is it?). https://tug.org/pipermail/tex-live/2022-September/048428.html git-svn-id: svn://tug.org/texlive/trunk@64382 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r--Master/tlpkg/TeXLive/TLPOBJ.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm
index f90c0b94d50..c121eecb33b 100644
--- a/Master/tlpkg/TeXLive/TLPOBJ.pm
+++ b/Master/tlpkg/TeXLive/TLPOBJ.pm
@@ -1,6 +1,6 @@
# $Id$
# TeXLive::TLPOBJ.pm - module for using tlpobj files
-# Copyright 2007-2021 Norbert Preining
+# Copyright 2007-2022 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
@@ -680,6 +680,9 @@ sub make_container {
tlwarn("$0: (make_container $containername) $f does not exist\n");
} else {
tlwarn("$0: (make_container $containername) $f not file or symlink\n");
+ if (! win32()) {
+ tlwarn("$0: ", `ls -l $f 2>&1`);
+ }
}
}