Andy, tdbloader3 has the following addition:
# TMP on Windows, and TMPDIR on linux.
T=
if [ "$TMP" != "" ]
then
T="$TMP"
fi
if [ "$TMPDIR" != "" ]
then
T="$TMPDIR"
fi
# ---- Setup
JVM_ARGS=${JVM_ARGS:--Xmx1024M}
if [ "$T" != "" ]
then
JVM_ARGS="$JVM_ARGS -Djava.io.tmpdir=$T"
fi
Shall I roll this back to the template? Why was this change made?
Damian
