diff options
Diffstat (limited to 'src/go')
-rw-r--r-- | src/go/devcontainer-feature.json | 2 | ||||
-rwxr-xr-x | src/go/install.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/go/devcontainer-feature.json b/src/go/devcontainer-feature.json index a0f37df..d2419b9 100644 --- a/src/go/devcontainer-feature.json +++ b/src/go/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "go", - "version": "1.0.1", + "version": "1.0.2", "name": "Go", "description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.", "options": { diff --git a/src/go/install.sh b/src/go/install.sh index e50c024..3b0ff26 100755 --- a/src/go/install.sh +++ b/src/go/install.sh @@ -242,8 +242,8 @@ EOF chown -R "${USERNAME}:golang" "${TARGET_GOROOT}" "${TARGET_GOPATH}" chmod -R g+r+w "${TARGET_GOROOT}" "${TARGET_GOPATH}" -find "${TARGET_GOROOT}" -type d | xargs -n 1 chmod g+s -find "${TARGET_GOPATH}" -type d | xargs -n 1 chmod g+s +find "${TARGET_GOROOT}" -type d -print0 | xargs -n 1 -0 chmod g+s +find "${TARGET_GOPATH}" -type d -print0 | xargs -n 1 -0 chmod g+s echo "Done!" |