1
0
mirror of https://github.com/golang/go synced 2024-11-12 08:10:21 -07:00

sudo.bash: print error/exit if problem with /usr/local/bin

When installing profiling tools on Mac OS X print
message if there is a problem with /usr/local/bin

Fixes #2209.

R=golang-dev, r, adg
CC=golang-dev, mike.rosset
https://golang.org/cl/4950057
This commit is contained in:
Mike Rosset 2011-09-01 17:24:32 +10:00 committed by Rob Pike
parent ca64a37d9d
commit 420934348d

View File

@ -13,6 +13,11 @@ Darwin)
exit 0
esac
if [[ ! -d /usr/local/bin ]]; then
echo 1>&2 'sudo.bash: problem with /usr/local/bin; cannot install tools.'
exit 2
fi
for i in prof cov
do
sudo cp "$GOROOT"/src/cmd/$i/6$i /usr/local/bin/6$i