From d153d476044ac7a4210f52ed090f147c64f6d235 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Fri, 16 Mar 2018 20:04:08 -0500 Subject: [PATCH] Another pass at gofmt enforcement --- script/check_formatting.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/check_formatting.sh b/script/check_formatting.sh index e064638..c93d65e 100755 --- a/script/check_formatting.sh +++ b/script/check_formatting.sh @@ -1,6 +1,6 @@ #!/bin/bash -files="$(go fmt ./...)" +files="$(go fmt ./pkg/...)" ignore="pkg/data/bindata.go" files=${files[@]/$ignore}