blob: f85ccdf4061bab61392d91f539089ef27f1b8e5d [file] [log] [blame]
Russ Cox6b7dd4c2008-11-18 10:08:46 -08001#!/bin/bash
2# 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
6case "`uname`" in
7Darwin)
8 ;;
9*)
10 exit 0
11esac
12
13for i in acid db prof cov
14do
15 sudo cp $GOROOT/src/cmd/$i/6$i /usr/local/bin/6$i
16 sudo chgrp procmod /usr/local/bin/6$i
17 sudo chmod g+s /usr/local/bin/6$i
18done