Text file
src/run.rc
1 #!/bin/rc -e
2 # Copyright 2012 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 rfork e
7
8 if(! test -f ../bin/go){
9 echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
10 exit wrongdir
11 }
12
13 eval `{../bin/go env}
14
15 GOPATH=/nonexist-gopath
16 GOBIN=() # Issue 14340
17 GOFLAGS=()
18 GO111MODULE=()
19
20 exec ../bin/go tool dist test -rebuild $*
21
View as plain text