From f70f277875a249dd5dace4ec5a320bc8811534e8 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sun, 20 Dec 2015 14:29:20 -0500 Subject: cmd/dist: make test default to --no-rebuild I'm tired of having to remember it on every command. Rebuilding everything is the wrong default. This CL updates the build script, but the builders may (or may not) need work, depending on whether they rebuild using the test command (I doubt it). Change-Id: I21f202a2f13e73df3f6bd54ae6a317c467b68151 Reviewed-on: https://go-review.googlesource.com/18084 Reviewed-by: Brad Fitzpatrick --- src/run.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/run.bash') diff --git a/src/run.bash b/src/run.bash index f35ec78982..3acf46a996 100755 --- a/src/run.bash +++ b/src/run.bash @@ -35,4 +35,4 @@ if ulimit -T &> /dev/null; then [ "$(ulimit -H -T)" == "unlimited" ] || ulimit -S -T $(ulimit -H -T) fi -exec go tool dist test "$@" +exec go tool dist test -rebuild "$@" -- cgit v1.3-5-g9baa