2010-01-25 01:09:46 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
2008-10-01 12:06:13 -06:00
|
|
|
|
2010-01-25 01:09:46 -07:00
|
|
|
set -e
|
2010-08-18 08:08:49 -06:00
|
|
|
if [ ! -f make.bash ]; then
|
|
|
|
echo 'all.bash must be run from $GOROOT/src' 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2012-06-06 06:19:16 -06:00
|
|
|
OLDPATH="$PATH"
|
2014-05-20 10:10:19 -06:00
|
|
|
. ./make.bash "$@" --no-banner
|
2012-04-09 11:49:49 -06:00
|
|
|
bash run.bash --no-rebuild
|
2012-06-06 06:19:16 -06:00
|
|
|
PATH="$OLDPATH"
|
2012-02-13 20:31:51 -07:00
|
|
|
$GOTOOLDIR/dist banner # print build info
|