]> Cypherpunks repositories - gostls13.git/commitdiff
run.bash: remove redundant rebuilds
authorRuss Cox <rsc@golang.org>
Wed, 20 Apr 2011 22:19:22 +0000 (18:19 -0400)
committerRuss Cox <rsc@golang.org>
Wed, 20 Apr 2011 22:19:22 +0000 (18:19 -0400)
R=r
CC=golang-dev
https://golang.org/cl/4449041

src/run.bash

index ea98403f73a6f3320caa3a3d9d24b376d119bf92..ccdbc1aa9c17b788dc5a747ee82de4fdb55af119 100755 (executable)
@@ -33,8 +33,7 @@ xcd() {
 if $rebuild; then
        (xcd pkg
                gomake clean
-               time gomake
-               gomake install
+               time gomake install
        ) || exit $i
 fi
 
@@ -43,18 +42,10 @@ gomake testshort
 ) || exit $?
 
 (xcd pkg/sync;
-if $rebuild; then
-       gomake clean;
-       time gomake
-fi
 GOMAXPROCS=10 gomake testshort
 ) || exit $?
 
 (xcd cmd/ebnflint
-if $rebuild; then
-       gomake clean;
-       time gomake
-fi
 time gomake test
 ) || exit $?