Christopher Wedgwood | 34191d9 | 2010-01-25 00:09:46 -0800 | [diff] [blame] | 1 | #!/usr/bin/env 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. |
Russ Cox | abb9551 | 2008-10-01 11:06:13 -0700 | [diff] [blame] | 5 | |
Christopher Wedgwood | 34191d9 | 2010-01-25 00:09:46 -0800 | [diff] [blame] | 6 | set -e |
Russ Cox | da392d9 | 2010-08-18 10:08:49 -0400 | [diff] [blame] | 7 | if [ ! -f make.bash ]; then |
| 8 | echo 'all.bash must be run from $GOROOT/src' 1>&2 |
| 9 | exit 1 |
| 10 | fi |
| 11 | . ./make.bash |
Russ Cox | aafe474e | 2010-08-24 20:00:33 -0400 | [diff] [blame] | 12 | bash run.bash --no-env --no-rebuild |
Russ Cox | da392d9 | 2010-08-18 10:08:49 -0400 | [diff] [blame] | 13 | installed # function defined by make.bash |
| 14 | |