diff options
Diffstat (limited to 'src/go')
-rw-r--r-- | src/go/devcontainer-feature.json | 2 | ||||
-rwxr-xr-x | src/go/install.sh | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/go/devcontainer-feature.json b/src/go/devcontainer-feature.json index b2aa30b..f63d93e 100644 --- a/src/go/devcontainer-feature.json +++ b/src/go/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "go", - "version": "1.1.1", + "version": "1.1.2", "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.", diff --git a/src/go/install.sh b/src/go/install.sh index 844411f..1b65e50 100755 --- a/src/go/install.sh +++ b/src/go/install.sh @@ -7,13 +7,13 @@ # Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/go.md # Maintainer: The VS Code and Codespaces Teams -TARGET_GO_VERSION=${VERSION:-"latest"} -GOLANGCILINT_VERSION=${GOLANGCILINTVERSION:-"latest"} +TARGET_GO_VERSION="${VERSION:-"latest"}" +GOLANGCILINT_VERSION="${GOLANGCILINTVERSION:-"latest"}" -TARGET_GOROOT=${TARGET_GOROOT:-"/usr/local/go"} -TARGET_GOPATH=${TARGET_GOPATH:-"/go"} -USERNAME=${USERNAME:-"automatic"} -INSTALL_GO_TOOLS=${INSTALL_GO_TOOLS:-"true"} +TARGET_GOROOT="${TARGET_GOROOT:-"/usr/local/go"}" +TARGET_GOPATH="${TARGET_GOPATH:-"/go"}" +USERNAME="${USERNAME:-"${_REMOTE_USER:-"automatic"}"}" +INSTALL_GO_TOOLS="${INSTALL_GO_TOOLS:-"true"}" # https://www.google.com/linuxrepositories/ GO_GPG_KEY_URI="https://dl.google.com/linux/linux_signing_key.pub" |