mirror of
https://github.com/golang/go
synced 2024-11-19 02:54:42 -07:00
8869cc159e
Fixes #6132. R=golang-dev, adg CC=golang-dev https://golang.org/cl/12858049
11 lines
195 B
Bash
Executable File
11 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
GOROOT=/usr/local/go
|
|
|
|
echo "Fixing permissions"
|
|
cd $GOROOT
|
|
find . -exec chmod ugo+r \{\} \;
|
|
find bin -exec chmod ugo+rx \{\} \;
|
|
find . -type d -exec chmod ugo+rx \{\} \;
|
|
chmod o-w .
|