fix quotation marks in launch.json (#13325)

Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
Elena Neuschild 2020-10-27 21:58:09 +01:00 committed by GitHub
parent bb89fa1aaa
commit 6c2c521ba5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -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",

View File

@ -0,0 +1,4 @@
{
"go.buildTags": "'sqlite sqlite_unlock_notify'",
"go.testFlags": ["-v"]
}