diff -r db4911b0c721 -r 445e01aede7e vendor/github.com/spf13/cobra/Makefile --- a/vendor/github.com/spf13/cobra/Makefile Tue Aug 23 22:33:28 2022 +0200 +++ b/vendor/github.com/spf13/cobra/Makefile Tue Aug 23 22:39:43 2022 +0200 @@ -9,11 +9,11 @@ $(warning "could not find richgo in $(PATH), run: go get github.com/kyoh86/richgo") endif -.PHONY: fmt lint test cobra_generator install_deps clean +.PHONY: fmt lint test install_deps clean default: all -all: fmt test cobra_generator +all: fmt test fmt: $(info ******************** checking formatting ********************) @@ -23,15 +23,10 @@ $(info ******************** running lint tools ********************) golangci-lint run -v -test: install_deps lint +test: install_deps $(info ******************** running tests ********************) richgo test -v ./... -cobra_generator: install_deps - $(info ******************** building generator ********************) - mkdir -p $(BIN) - make -C cobra all - install_deps: $(info ******************** downloading dependencies ********************) go get -v ./...