From dc8346508bef1436d2486d7ba887f76d247081a3 Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Mon, 4 Dec 2023 14:10:23 +0100 Subject: [PATCH] [GITEA] 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 (cherry picked from commit 15fa4cf98e6f72203e4e1e8906ae32ce5cc6b753) (cherry picked from commit 29932030932e74410857fcdb97ccca9374c8232a) (cherry picked from commit f5054e48832d056ab72bf6c46369bc64098dc06b) (cherry picked from commit e14c5f934c65441e5b2a75e084f17fc4812f6e52) (cherry picked from commit ed53157084bfac78c76ad924a9473caee4897829) --- 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 +}