From f6b63e5f2b86ab3e26c5705befc92e604f63da9e Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Tue, 2 Oct 2012 09:29:26 -0700 Subject: [PATCH] just call gofmt once --- tool/gofmt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/gofmt b/tool/gofmt index 6534c38..31481f7 100755 --- a/tool/gofmt +++ b/tool/gofmt @@ -3,4 +3,4 @@ set -e set -o pipefail -ls tool/src/*.go src/*/*.go | xargs -n 1 gofmt -tabs=false -tabwidth=4 -w=true +ls tool/src/*.go src/*/*.go | xargs gofmt -tabs=false -tabwidth=4 -w=true