aboutsummaryrefslogtreecommitdiff
path: root/src/go/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/install.sh')
-rwxr-xr-xsrc/go/install.sh4
1 files changed, 2 insertions, 2 deletions
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!"