diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-09-14 20:15:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 20:15:02 +0300 |
commit | 811a93f06a2ac71c130abadc4a4415188406786b (patch) | |
tree | 72df58675da41cc60d5a2840278d74daec937647 | |
parent | 674b096863a564d5dfe91e0a88ea0061fa79ae71 (diff) |
go: Fix path issue (#156)
fix go
-rw-r--r-- | src/go/devcontainer-feature.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/go/devcontainer-feature.json b/src/go/devcontainer-feature.json index a15ded0..f7ee1ad 100644 --- a/src/go/devcontainer-feature.json +++ b/src/go/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "go", - "version": "1.0.5", + "version": "1.0.6", "name": "Go", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/go", "description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.", @@ -27,7 +27,7 @@ }, "containerEnv": { "GOPATH": "/usr/local/go", - "PATH": "/usr/local/go:${PATH}" + "PATH": "/usr/local/go/bin:${PATH}" }, "capAdd": [ "SYS_PTRACE" |