From 6c2c521ba5f557ed3ed6117dd6801f6d69cc1e6d Mon Sep 17 00:00:00 2001 From: Elena Neuschild Date: Tue, 27 Oct 2020 21:58:09 +0100 Subject: [PATCH] fix quotation marks in launch.json (#13325) Co-authored-by: zeripath --- contrib/ide/vscode/launch.json | 2 +- contrib/ide/vscode/settings.json | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 contrib/ide/vscode/settings.json diff --git a/contrib/ide/vscode/launch.json b/contrib/ide/vscode/launch.json index 6e90aa0ea..10df14ef3 100644 --- a/contrib/ide/vscode/launch.json +++ b/contrib/ide/vscode/launch.json @@ -19,7 +19,7 @@ "type": "go", "request": "launch", "mode": "debug", - "buildFlags": "-tags=\"sqlite sqlite_unlock_notify\"", + "buildFlags": "-tags='sqlite sqlite_unlock_notify'", "port": 2345, "host": "127.0.0.1", "program": "${workspaceRoot}/main.go", diff --git a/contrib/ide/vscode/settings.json b/contrib/ide/vscode/settings.json new file mode 100644 index 000000000..e33bccf90 --- /dev/null +++ b/contrib/ide/vscode/settings.json @@ -0,0 +1,4 @@ +{ + "go.buildTags": "'sqlite sqlite_unlock_notify'", + "go.testFlags": ["-v"] +} \ No newline at end of file