From 5f9bd027f37e5284fd1acc08b1d7b45a61b9ce3c Mon Sep 17 00:00:00 2001 From: Vincent Riquer Date: Tue, 28 Jan 2025 15:49:38 +0100 Subject: [PATCH] fix: quote variable in database debug output --- lib/database/open | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/database/open b/lib/database/open index 9d9fdc3..796890a 100644 --- a/lib/database/open +++ b/lib/database/open @@ -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