mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
build/Makefile: Properly exclude files under "./vendor/" path for go fmt
(#19097)
Properly exclude files under "./vendor/" path, and find "files" only. The original method "might" found "directories" with the same naming, or, might exclude occasionally exclude the go files with "vendor" string in any part of its path.
This commit is contained in:
parent
f9380fd9be
commit
0c63c7c854
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
|||||||
VERSION?="0.3.32"
|
VERSION?="0.3.32"
|
||||||
TEST?=./...
|
TEST?=./...
|
||||||
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
|
GOFMT_FILES?=$$(find . -not -path "./vendor/*" -type f -name '*.go')
|
||||||
WEBSITE_REPO=github.com/hashicorp/terraform-website
|
WEBSITE_REPO=github.com/hashicorp/terraform-website
|
||||||
|
|
||||||
default: test
|
default: test
|
||||||
|
Loading…
Reference in New Issue
Block a user