diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-24 15:17:36 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-24 15:17:36 +0100 |
commit | 3e178f01710e2e50860c3d5e6e8e346f2d378a5c (patch) | |
tree | b4f7d038adb77b549211e1a3801c969fb8e6c0d1 | |
parent | a653132a916cfdc8576e14f9e8b7445f615803cc (diff) |
Fixed GOPATH setup while debugging in VSC
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rw-r--r-- | .vscode/launch.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index aadccfd..f5ca868 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,7 +7,7 @@ "mode": "debug", "program": "${workspaceRoot}", "env": { - "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}", + "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}", "XDS_APPNAME": "xds-cli", "XDS_AGENT_URL": "localhost:8800", "XDS_LOGLEVEL": "debug" @@ -22,7 +22,7 @@ "mode": "debug", "program": "${workspaceRoot}", "env": { - "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}", + "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}", "XDS_APPNAME": "xds-cli", "XDS_AGENT_URL": "localhost:8800", "XDS_LOGLEVEL": "debug" @@ -37,7 +37,7 @@ "mode": "debug", "program": "${workspaceRoot}", "env": { - "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}", + "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}", "XDS_APPNAME": "xds-cli", "XDS_AGENT_URL": "localhost:8800", "XDS_LOGLEVEL": "debug" @@ -56,7 +56,7 @@ "mode": "debug", "program": "${workspaceRoot}", "env": { - "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}", + "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}", "XDS_APPNAME": "xds-cli", "XDS_AGENT_URL": "localhost:8800", "XDS_LOGLEVEL": "debug" @@ -75,7 +75,7 @@ "mode": "debug", "program": "${workspaceRoot}", "env": { - "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}", + "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}", "XDS_APPNAME": "xds-cli", "XDS_LOGLEVEL": "debug" }, |