diff options
author | Karl Berry <karl@freefriends.org> | 2022-04-04 17:45:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-04-04 17:45:51 +0000 |
commit | 4ca1cb3da46997c41eff1ae88aad0d090f717b3c (patch) | |
tree | cf65844c3250610fb49b763d107e19199c892121 /Master/tlpkg/bin | |
parent | faf2b1f50f1d5ed2f6a34d913859907b3565a7a1 (diff) |
tl-update-tlnet: --no-adjust-repo option; tl-update-images: no need for global writability; releng.txt, tlmgr.pl: doc
git-svn-id: svn://tug.org/texlive/trunk@62899 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-images | 1 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-tlnet | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tl-update-images b/Master/tlpkg/bin/tl-update-images index 19676eeec7f..420d6b8cfb4 100755 --- a/Master/tlpkg/bin/tl-update-images +++ b/Master/tlpkg/bin/tl-update-images @@ -172,7 +172,6 @@ MAKEINST () echo "$0: $mkisofs failed (status $?), goodbye." >&2 exit $? fi - chmod a+rw $iso cd $target || exit 1 rm -rf $imgdir diff --git a/Master/tlpkg/bin/tl-update-tlnet b/Master/tlpkg/bin/tl-update-tlnet index 6ae0f2207d9..440207a3865 100755 --- a/Master/tlpkg/bin/tl-update-tlnet +++ b/Master/tlpkg/bin/tl-update-tlnet @@ -15,6 +15,7 @@ unset LS_COLORS yyyy=2022 +adjust_repo=1 check_consistency=true chicken=false cow_shell=/bin/sh @@ -30,12 +31,14 @@ gpgcmd= while test $# -gt 0; do case $1 in + --adjust-repo) adjust_repo=1;; # instopt --cow) cow_shell=cow-shell;; # see comments below --critical) critical=--all;; --dest) shift; tlweb=$1;; --dry-run|-n) chicken=true;; --gpgcmd) shift; gpgcmd="--gpgcmd \"$1\"";; --master) shift; Master=$1;; + --no-adjust-repo) adjust_repo=0;; --no-consistency) check_consistency=false;; # takes a long time. --no-install-pkg) update_install_pkg=false;;# trunk update after freeze --no-testinstall|-N) testinstall=false;; # and no updates; quit early. @@ -186,7 +189,7 @@ tlpdbopt_install_srcfiles 1 tlpdbopt_create_formats 1 instopt_letter 0 instopt_adjustpath 0 -instopt_adjustrepo 1 +instopt_adjustrepo $adjust_repo " >texlive.profile # silence envvar warnings and the welcome message. |