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:
parent
ca64a37d9d
commit
420934348d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user