Skip to content

Commit

Permalink
ci: make linter happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Aug 29, 2024
1 parent fc37318 commit b745934
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ endif

GOBUILD ?= CGO_ENABLED=0 go build
PACKAGES ?= $(shell go list ./...)
SOURCES ?= $(shell find . -name "*.go" -type f)
SOURCES ?= $(shell find . -name "*.go" -type f -not -path ./.devenv/\* -not -path ./.direnv/\*)
GENERATE ?= $(PACKAGES)

TAGS ?= netgo
Expand Down
2 changes: 1 addition & 1 deletion pkg/command/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var (
SilenceErrors: false,
SilenceUsage: true,

PersistentPreRunE: func(ccmd *cobra.Command, args []string) error {
PersistentPreRunE: func(_ *cobra.Command, _ []string) error {
return setupLogger()
},

Expand Down

0 comments on commit b745934

Please sign in to comment.