From f1288873486a6ed7ae3710429bf6c4d09b05ca1a Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Sat, 17 May 2025 16:11:16 -0400 Subject: [PATCH] Add script to create clone of testing/testing.db to allow for writes in tests --- scripts/clone_test_db.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 scripts/clone_test_db.sh diff --git a/scripts/clone_test_db.sh b/scripts/clone_test_db.sh new file mode 100755 index 000000000..7a9affb47 --- /dev/null +++ b/scripts/clone_test_db.sh @@ -0,0 +1,3 @@ +#!/bin/bash +rm -f testing/testing_clone.db +sqlite3 testing/testing/db '.clone testing/testing_clone.db' > /dev/null