diff options
author | Karl Berry <karl@freefriends.org> | 2018-03-03 18:29:03 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-03-03 18:29:03 +0000 |
commit | be3df25db62116ef060b36ae89fd2c3d41da4d7d (patch) | |
tree | 0927b57c937e19e51b7e0c1e239066762ff27403 /Master/texmf-dist/scripts/tlcockpit/tlcockpit.sh | |
parent | be898c6b1244e8e97f7bb28f2fee6313882de105 (diff) |
tl18 pretest initial setup
git-svn-id: svn://tug.org/texlive/trunk@46798 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/tlcockpit/tlcockpit.sh')
-rwxr-xr-x | Master/texmf-dist/scripts/tlcockpit/tlcockpit.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/tlcockpit/tlcockpit.sh b/Master/texmf-dist/scripts/tlcockpit/tlcockpit.sh new file mode 100755 index 00000000000..734ffe54c3c --- /dev/null +++ b/Master/texmf-dist/scripts/tlcockpit/tlcockpit.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +kernel=`uname -s` +if test "${kernel#*CYGWIN}" != "$kernel" +then + jarpath=`cygpath -w $(kpsewhich --progname=tlcockpit --format=texmfscripts tlcockpit.jar)` +else + jarpath=`kpsewhich --progname=tlcockpit --format=texmfscripts tlcockpit.jar` +fi +exec java -jar "$jarpath" "$@" |