diff options
author | Karl Berry <karl@freefriends.org> | 2021-11-20 23:01:11 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-11-20 23:01:11 +0000 |
commit | cdb8cc3d9c6117cbec0b6935d177d829073b30fe (patch) | |
tree | 7f0400e0285e8e2cf66fe3d735a18ca872ba14e9 /Master/tlpkg/bin | |
parent | e6136d0b484623d79a0c5dd8fe5ec1e20d970209 (diff) |
scripts xetex-unsafe and xelatex-unsafe, for xetex+pstricks+transparency
git-svn-id: svn://tug.org/texlive/trunk@61101 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-linked-scripts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-linked-scripts b/Master/tlpkg/bin/tl-update-linked-scripts index c589c8e24bb..dfdc3370cf4 100755 --- a/Master/tlpkg/bin/tl-update-linked-scripts +++ b/Master/tlpkg/bin/tl-update-linked-scripts @@ -10,7 +10,8 @@ Master=`cd $mydir/../.. && pwd` compare_and_copy () { for file in "$@"; do #echo "comparing $Src/$file to $Dest..." - echo "$file" | grep '/context.sh$' >/dev/null && continue # context in flux + # context is its own thing, don't try to handle here. + echo "$file" | grep '/context.sh$' >/dev/null && continue cmp -s $Src/$file $Dest/$file && continue |