From: Rahul Chaudhry Date: Fri, 8 May 2015 19:18:52 +0000 (-0700) Subject: build: correct quoting of args in run.bash X-Git-Tag: go1.5beta1~670 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d9f69196dee8c95e4669d18619f3e3729599e90f;p=gostls13.git build: correct quoting of args in run.bash Change-Id: I72df4d979212d8af74a4d2763423346eb6ba14f2 Reviewed-on: https://go-review.googlesource.com/9892 Reviewed-by: Brad Fitzpatrick --- 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 "$@"