diff options
author | Karl Berry <karl@freefriends.org> | 2021-02-28 23:04:15 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-02-28 23:04:15 +0000 |
commit | 9f469f9f9fc65be597f4d4d41dc6ef4d626db751 (patch) | |
tree | fb2975c01d0a4304bd76b47b0bc363fdc0dba494 /Master | |
parent | 74be5adfeb913780af0835b2fff40301505e3993 (diff) |
chmod g-w cooked dir, since otherwise cron does.
git-svn-id: svn://tug.org/texlive/branches/branch2020.0@58007 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/ctan2tl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/ctan2tl b/Master/tlpkg/bin/ctan2tl index 5aacb78fb5e..ed617645f77 100755 --- a/Master/tlpkg/bin/ctan2tl +++ b/Master/tlpkg/bin/ctan2tl @@ -171,6 +171,9 @@ fi # check for file names differing in case only. find $pkg \( -name .svn \) -prune -o -print | sort -f | uniq -i -d >&2 +# not group-writable; cron checks also. +chmod -R u+w,go-w,a+rX-st --changes $pkg + # check for symlinks find $pkg -type l -ls | grep -v /Master/bin | sort >&2 |