From 14f8447d0f3c202a57bed77722799e320845df0c Mon Sep 17 00:00:00 2001 From: Samruddhi Khandale Date: Thu, 9 Jun 2022 09:06:32 -0700 Subject: [PATCH] go: fix path --- src/go/devcontainer-feature.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/go/devcontainer-feature.json b/src/go/devcontainer-feature.json index 387839e..3c47c4a 100644 --- a/src/go/devcontainer-feature.json +++ b/src/go/devcontainer-feature.json @@ -12,8 +12,8 @@ "init": true, "extensions": ["golang.Go"], "containerEnv": { - "GOPATH": "/go", - "PATH": "${GOPATH}/bin:${GOROOT}/bin:${PATH}" + "GOPATH": "/usr/local/go", + "PATH": "${GOPATH}/bin:${PATH}" }, "capAdd": [ "SYS_PTRACE" ], "securityOpt": [ "seccomp=unconfined" ], @@ -21,4 +21,4 @@ "app": "", "file": "install.sh" } -} \ No newline at end of file +}