blob: 147e58f1526e4a452975757d26f18ce2a070bbf3 [file] [log] [blame]
Devon H. O'Dell553be842009-11-14 15:29:09 -08001#!/usr/bin/env bash
Russ Cox6b7dd4c2008-11-18 10:08:46 -08002# Copyright 2009 The Go Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style
4# license that can be found in the LICENSE file.
5
Russ Coxda392d92010-08-18 10:08:49 -04006set -e
7. ./env.bash
8
Russ Cox6b7dd4c2008-11-18 10:08:46 -08009case "`uname`" in
10Darwin)
11 ;;
12*)
13 exit 0
14esac
15
Rob Pike00093012009-11-12 23:19:12 -080016for i in prof cov
Russ Cox6b7dd4c2008-11-18 10:08:46 -080017do
Sergio Luis O. B. Correia6fc82072009-11-23 17:32:51 -080018 sudo cp "$GOROOT"/src/cmd/$i/6$i /usr/local/bin/6$i
Russ Cox6b7dd4c2008-11-18 10:08:46 -080019 sudo chgrp procmod /usr/local/bin/6$i
20 sudo chmod g+s /usr/local/bin/6$i
21done