Skip to content

Commit 6c2c521

Browse files
eneuschildzeripath
andauthored
fix quotation marks in launch.json (#13325)
Co-authored-by: zeripath <[email protected]>
1 parent bb89fa1 commit 6c2c521

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

contrib/ide/vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"type": "go",
2020
"request": "launch",
2121
"mode": "debug",
22-
"buildFlags": "-tags=\"sqlite sqlite_unlock_notify\"",
22+
"buildFlags": "-tags='sqlite sqlite_unlock_notify'",
2323
"port": 2345,
2424
"host": "127.0.0.1",
2525
"program": "${workspaceRoot}/main.go",

contrib/ide/vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"go.buildTags": "'sqlite sqlite_unlock_notify'",
3+
"go.testFlags": ["-v"]
4+
}

0 commit comments

Comments
 (0)