From 15fa4cf98e6f72203e4e1e8906ae32ce5cc6b753 Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Mon, 4 Dec 2023 14:10:23 +0100 Subject: [PATCH] Fix VSCode settings Without this change, I get the error: > Error creating test engine: sqlite3 requires: import _ "github.com/mattn/go-sqlite3" or -tags sqlite,sqlite_unlock_notify --- contrib/ide/vscode/settings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/ide/vscode/settings.json b/contrib/ide/vscode/settings.json index e33bccf902..2ec666f3c1 100644 --- a/contrib/ide/vscode/settings.json +++ b/contrib/ide/vscode/settings.json @@ -1,4 +1,4 @@ { - "go.buildTags": "'sqlite sqlite_unlock_notify'", + "go.buildTags": "sqlite,sqlite_unlock_notify", "go.testFlags": ["-v"] -} \ No newline at end of file +}