mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-04 20:06:27 +02:00
Added spellcheck target to makefile (#3398)
* Added spellcheck target to makefile * address review comments
This commit is contained in:
parent
07ea7ba193
commit
b78a63befb
7
Makefile
7
Makefile
@ -2,7 +2,8 @@ TEST?=$$(go list ./... | grep -v /vendor/)
|
||||
VETARGS?=-asmdecl -atomic -bool -buildtags -copylocks -methods -nilfunc -printf -rangeloops -shift -structtags -unsafeptr
|
||||
EXTERNAL_TOOLS=\
|
||||
github.com/mitchellh/gox \
|
||||
github.com/kardianos/govendor
|
||||
github.com/kardianos/govendor \
|
||||
github.com/client9/misspell/cmd/misspell
|
||||
BUILD_TAGS?=vault
|
||||
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
|
||||
|
||||
@ -83,6 +84,10 @@ fmtcheck:
|
||||
fmt:
|
||||
gofmt -w $(GOFMT_FILES)
|
||||
|
||||
spellcheck:
|
||||
@echo "==> Spell checking website..."
|
||||
@misspell -error -source=text website/source
|
||||
|
||||
mysql-database-plugin:
|
||||
@CGO_ENABLED=0 go build -o bin/mysql-database-plugin ./plugins/database/mysql/mysql-database-plugin
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user