fix quotation marks in launch.json (#13325)

Co-authored-by: zeripath <art27@cantab.net>
mj-v1.14.3
Elena Neuschild 4 years ago committed by GitHub
parent bb89fa1aaa
commit 6c2c521ba5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

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