From 7e16c235afebd813b002f0141e1fde8186f75cd8 Mon Sep 17 00:00:00 2001 From: Jussi Saurio Date: Mon, 26 May 2025 22:00:39 +0300 Subject: [PATCH] Clear test db's WAL too in clone_test_db.sh --- scripts/clone_test_db.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/clone_test_db.sh b/scripts/clone_test_db.sh index 7a9affb47..45c84527b 100755 --- a/scripts/clone_test_db.sh +++ b/scripts/clone_test_db.sh @@ -1,3 +1,3 @@ #!/bin/bash -rm -f testing/testing_clone.db +rm -f testing/testing_clone.db* sqlite3 testing/testing/db '.clone testing/testing_clone.db' > /dev/null