fix: quote variable in database debug output

This commit is contained in:
Vincent Riquer 2025-01-28 15:49:38 +01:00
parent 7963754379
commit 5f9bd027f3

View File

@ -11,7 +11,7 @@ openDatabase() {
if (( debug > 2 ))
then
exec 5>&3
exec 3> >(tee -a $tempdir/debug.log >&5)
exec 3> >(tee -a "$tempdir/debug.log" >&5)
fi
cat $schema >&3
echo '.separator ::AtOM:SQL:Sep::' >&3