diff options
| author | Russ Cox <rsc@golang.org> | 2012-01-09 16:44:01 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2012-01-09 16:44:01 -0800 |
| commit | 146a703cd1ecf096d270873090c8eeef6438b5f7 (patch) | |
| tree | 327832e519534765ea1f846d98203edabc989043 /src/run.bash | |
| parent | b8615a0931b05c37c7d8cf3c0e11a858888483de (diff) | |
| download | go-146a703cd1ecf096d270873090c8eeef6438b5f7.tar.xz | |
cmd/go: add -v flag to build and install
The -v flag prints the names of packages as they are built/installed.
Use -v in make.bash/run.bash to avoid a silent pause during
the build while Go code is being compiled.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5532055
Diffstat (limited to 'src/run.bash')
| -rwxr-xr-x | src/run.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run.bash b/src/run.bash index 004c66eea2..2741637a80 100755 --- a/src/run.bash +++ b/src/run.bash @@ -34,7 +34,7 @@ if $rebuild; then if $USE_GO_TOOL; then echo echo '# Package builds' - time go install -a std + time go install -a -v std else (xcd pkg gomake clean |
