Use tools.go commands without installing

This commit is contained in:
Deluan 2021-02-01 16:16:30 -05:00
parent 950ba9f77e
commit 1f3bc4d202
7 changed files with 25 additions and 21 deletions

View file

@ -10,11 +10,7 @@
#
# This script does not handle file names that contain spaces.
if which goimports > /dev/null; then
gofmtcmd=goimports
else
gofmtcmd=gofmt
fi
gofmtcmd=go run golang.org/x/tools/cmd/goimports
gofiles=$(git diff --cached --name-only --diff-filter=ACM | grep '.go$')
[ -z "$gofiles" ] && exit 0