blob: f237f505d5ca1097aa1f27d1d4a372be6fa8b1a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# Adapted from tlcockpit.sh to ensure the script works with cygwin
scriptname=`basename "$0" .sh`
jar="$scriptname.jar"
jarpath=`kpsewhich --progname="$scriptname" --format=texmfscripts "$jar"`
kernel=`uname -s 2>/dev/null`
if echo "$kernel" | grep CYGWIN >/dev/null; then
CYGWIN_ROOT=`cygpath -w /`
export CYGWIN_ROOT
jarpath=`cygpath -w "$jarpath"`
fi
exec java -jar "$jarpath" "$@"
|