The Go Programming Language

Text file src/all.bash

     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.
     5	
     6	set -e
     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
    12	bash run.bash --no-env --no-rebuild
    13	installed  # function defined by make.bash
    14	

release.r60.3. Except as noted, this content is licensed under a Creative Commons Attribution 3.0 License.