fix wrong temp file var

This commit is contained in:
Dirk Wetter 2023-12-23 13:13:16 +01:00
parent 3b5f2022b3
commit c5265e33b7

View File

@ -20520,7 +20520,7 @@ maketempf() {
fi
ls "$TEMPDIR/" 2>/dev/null || fatal "temporary directory needed not readable" $ERR_FCREATE
TMPFILE=$TEMPDIR/tempfile.txt
touch $TEMPFILE 2>/dev/null || fatal "temporary directory needed not writeable" $ERR_FCREATE
touch $TMPFILE 2>/dev/null || fatal "temporary directory needed not writeable" $ERR_FCREATE
if [[ "$DEBUG" -eq 0 ]]; then
ERRFILE="/dev/null"
else