mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-16 19:35:14 +00:00
gofump don't touch code generated files (#1654)
`make format` did touch code generated files witch creates a mess from time to time ... this change it ...
This commit is contained in:
parent
92614dfb1e
commit
ed78ba78fc
1 changed files with 1 additions and 2 deletions
3
Makefile
3
Makefile
|
@ -1,4 +1,3 @@
|
|||
GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./.git/*")
|
||||
GO_PACKAGES ?= $(shell go list ./... | grep -v /vendor/)
|
||||
|
||||
TARGETOS ?= linux
|
||||
|
@ -83,7 +82,7 @@ vendor: ## Update the vendor directory
|
|||
go mod vendor
|
||||
|
||||
format: install-tools ## Format source code
|
||||
@gofumpt -extra -w ${GOFILES_NOVENDOR}
|
||||
@gofumpt -extra -w .
|
||||
|
||||
.PHONY: clean
|
||||
clean: ## Clean build artifacts
|
||||
|
|
Loading…
Reference in a new issue