aboutsummaryrefslogtreecommitdiff
path: root/src/go/install.sh
diff options
context:
space:
mode:
authorSamruddhi Khandale <skhandale@microsoft.com>2022-06-15 19:53:43 +0300
committerGitHub <noreply@github.com>2022-06-15 19:53:43 +0300
commit0ed472aa25bd1a21acf431cbb85b7528ff0cf10a (patch)
tree7a7a2bb78f979fc62e79814250fb7e5a31426ee9 /src/go/install.sh
parentbc30428c914785479148f999114494a6a1f603d0 (diff)
Fix permissions: add username:user_group (#50)
* add username:user_group * fix remaining permissions * add * * remove *
Diffstat (limited to 'src/go/install.sh')
-rw-r--r--src/go/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/go/install.sh b/src/go/install.sh
index 96a1b38..e524e26 100644
--- a/src/go/install.sh
+++ b/src/go/install.sh
@@ -245,7 +245,7 @@ if [[ "\${PATH}" != *"\${GOROOT}/bin"* ]]; then export PATH="\${PATH}:\${GOROOT}
EOF
)"
-chown -R :golang "${TARGET_GOROOT}" "${TARGET_GOPATH}"
+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