mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 14:22:37 +01:00
make: exclude autogenerated files from go fmt
This commit is contained in:
parent
e0439965bb
commit
6dfefe39ce
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -46,7 +46,7 @@ GOINSTALL := GO111MODULE=on go install -v
|
|||
GOTEST := GO111MODULE=on go test
|
||||
|
||||
GOVERSION := $(shell go version | awk '{print $$3}')
|
||||
GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "./vendor/*")
|
||||
GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "./vendor/*" -not -name "*pb.go" -not -name "*pb.gw.go")
|
||||
|
||||
RM := rm -f
|
||||
CP := cp
|
||||
|
|
Loading…
Add table
Reference in a new issue