aboutsummaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorRahul Chaudhry <rahulchaudhry@chromium.org>2015-05-08 12:18:52 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2015-05-09 04:23:47 +0000
commitd9f69196dee8c95e4669d18619f3e3729599e90f (patch)
tree7aa5b3c40d4b586aaf5e5a65089b8d904e5e74f2 /src/run.bash
parent82359d1c2d835d44d84408b52fd8eaf4965ad363 (diff)
downloadgo-d9f69196dee8c95e4669d18619f3e3729599e90f.tar.gz
go-d9f69196dee8c95e4669d18619f3e3729599e90f.zip
build: correct quoting of args in run.bash
Change-Id: I72df4d979212d8af74a4d2763423346eb6ba14f2 Reviewed-on: https://go-review.googlesource.com/9892 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run.bash b/src/run.bash
index 6fc864dc0e..f35ec78982 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 "$@"