2010-01-25 00:09:46 -08: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 11:06:13 -07:00
|
|
|
|
2010-01-25 00:09:46 -08:00
|
|
|
set -e
|
2010-08-18 10:08:49 -04:00
|
|
|
if [ ! -f make.bash ]; then
|
|
|
|
|
echo 'all.bash must be run from $GOROOT/src' 1>&2
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2012-06-06 20:19:16 +08:00
|
|
|
OLDPATH="$PATH"
|
2014-05-20 12:10:19 -04:00
|
|
|
. ./make.bash "$@" --no-banner
|
2012-04-10 01:49:49 +08:00
|
|
|
bash run.bash --no-rebuild
|
2012-06-06 20:19:16 +08:00
|
|
|
PATH="$OLDPATH"
|
2012-02-13 22:31:51 -05:00
|
|
|
$GOTOOLDIR/dist banner # print build info
|