diff options
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-tlcritical | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tl-update-tlcritical b/Master/tlpkg/bin/tl-update-tlcritical index f868ad0f92d..d5dfcadda62 100755 --- a/Master/tlpkg/bin/tl-update-tlcritical +++ b/Master/tlpkg/bin/tl-update-tlcritical @@ -11,19 +11,22 @@ cd ${TMPDIR-/tmp} tlcrit=/home/ftp/texlive/tlcritical # update normal containers. +echo "$0: running tl-update-containers (for critical packages)..." $mydir/tl-update-containers \ -location $tlcrit -all \ 00texlive-installation.config 00texlive.config bin-texlive texlive.infra # update Unix disaster recovery. +echo "$0: running tl-makeself-from-tlnet..." $mydir/tl-makeself-from-tlnet $tlcrit rm -f $tlcrit/update-*.sh -mv -v update-*.sh $tlcrit +mv update-*.sh $tlcrit (cd $tlcrit && ln -sv update-*.sh update-tlmgr-latest.sh) # update the Windows updater executable. +echo "$0: running tl-update-nsis..." $mydir/tl-update-nsis >/tmp/updater.nsi makensis /tmp/updater.nsi >/tmp/makensis.log rm -f $tlcrit/update-*.exe /tmp/updater.nsi -mv -v update-*.exe $tlcrit +mv update-*.exe $tlcrit (cd $tlcrit && ln -sv update-*.exe update-tlmgr-latest.exe) |