diff options
author | Karl Berry <karl@freefriends.org> | 2020-01-28 23:29:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-01-28 23:29:12 +0000 |
commit | 82f354a69766a2ae082ecd5a34ebbc66c565dd80 (patch) | |
tree | 732891801df6f99d7ee4d1b8e4c7346a3ff2d6c7 | |
parent | 4742166f7f1902abebb7bd3ec188e0a04ec012bb (diff) |
no more scripts in tl_scripts
git-svn-id: svn://tug.org/texlive/trunk@53587 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tl-update-linked-scripts | 38 |
1 files changed, 22 insertions, 16 deletions
diff --git a/Master/tlpkg/bin/tl-update-linked-scripts b/Master/tlpkg/bin/tl-update-linked-scripts index 75504eafdb6..c589c8e24bb 100755 --- a/Master/tlpkg/bin/tl-update-linked-scripts +++ b/Master/tlpkg/bin/tl-update-linked-scripts @@ -35,19 +35,25 @@ test -r $Dest/scripts.lst || { . $Dest/scripts.lst compare_and_copy $texmf_scripts - -# Build/source/texk/texlive/tl_scripts => Master/texmf-dist/scripts/texlive - -Src=`cd $Dest/../tl_scripts && pwd` -Dest=$Master/texmf-dist/scripts/texlive - -test -r $Src/scripts.lst || { - echo "$0: \`$Src/scripts.lst' missing'" - exit 1 -} - -# echo "$Src => $Dest" - -. $Src/scripts.lst - -compare_and_copy $tl_scripts +exit $? + +# Here is how we handled a second directory, that copied in the other +# direction. As of January 2020, all the scripts in tl_scripts are gone, +# now maintained in Master with slaves in the normal linked_scripts +# handled above. +# +## Build/source/texk/texlive/tl_scripts => Master/texmf-dist/scripts/texlive +# +#Src=`cd $Dest/../tl_scripts && pwd` +#Dest=$Master/texmf-dist/scripts/texlive +# +#test -r $Src/scripts.lst || { +# echo "$0: \`$Src/scripts.lst' missing'" +# exit 1 +#} +# +## echo "$Src => $Dest" +# +#. $Src/scripts.lst +# +#compare_and_copy $tl_scripts |