diff options
Diffstat (limited to 'src/go/devcontainer-feature.json')
-rw-r--r-- | src/go/devcontainer-feature.json | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/go/devcontainer-feature.json b/src/go/devcontainer-feature.json index 6228090..a0f37df 100644 --- a/src/go/devcontainer-feature.json +++ b/src/go/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "go", - "version": "1.0.0", + "version": "1.0.1", "name": "Go", "description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.", "options": { @@ -17,9 +17,13 @@ } }, "init": true, - "extensions": [ - "golang.Go" - ], + "customizations": { + "vscode": { + "extensions": [ + "golang.Go" + ] + } + }, "containerEnv": { "GOPATH": "/usr/local/go", "PATH": "${GOPATH}/bin:${PATH}" |