From: David Symonds Date: Sun, 5 Feb 2012 03:50:38 +0000 (+1100) Subject: build: fix sudo.bash. X-Git-Tag: weekly.2012-02-07~62 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cdfd5b2bede93497f4c74fa0959c3d6c8445fd57;p=gostls13.git build: fix sudo.bash. R=rsc, balasanjay, rsc CC=golang-dev https://golang.org/cl/5630051 --- diff --git a/src/sudo.bash b/src/sudo.bash index 369505d2f6..3e1507b4e8 100755 --- a/src/sudo.bash +++ b/src/sudo.bash @@ -4,7 +4,6 @@ # license that can be found in the LICENSE file. set -e -. ./env.bash case "`uname`" in Darwin) @@ -18,12 +17,13 @@ if [[ ! -d /usr/local/bin ]]; then exit 2 fi +cd $(dirname $0) for i in prof cov do # Remove old binaries if present sudo rm -f /usr/local/bin/6$i # Install new binaries - sudo cp "$GOROOT"/bin/tool/$i /usr/local/bin/go$i + sudo cp ../bin/tool/$i /usr/local/bin/go$i sudo chgrp procmod /usr/local/bin/go$i sudo chmod g+s /usr/local/bin/go$i done