diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2022-03-11 12:07:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 12:07:32 +0000 |
commit | 9314774614828d7b75b3901a111d0b90f3f79cb5 (patch) | |
tree | 985fc0df94d4dc229041d51846f5350cf66d94a9 /vendor/github.com/spf13/cobra/Makefile | |
parent | 7ba81ead38d0c4fb2e583224257a0497789552fc (diff) | |
download | podman-9314774614828d7b75b3901a111d0b90f3f79cb5.tar.gz podman-9314774614828d7b75b3901a111d0b90f3f79cb5.tar.bz2 podman-9314774614828d7b75b3901a111d0b90f3f79cb5.zip |
Bump github.com/spf13/cobra from 1.3.0 to 1.4.0
Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.3.0 to 1.4.0.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
- [Commits](https://github.com/spf13/cobra/compare/v1.3.0...v1.4.0)
---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/spf13/cobra/Makefile')
-rw-r--r-- | vendor/github.com/spf13/cobra/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/vendor/github.com/spf13/cobra/Makefile b/vendor/github.com/spf13/cobra/Makefile index 5880f04eb..443ef1a98 100644 --- a/vendor/github.com/spf13/cobra/Makefile +++ b/vendor/github.com/spf13/cobra/Makefile @@ -9,11 +9,11 @@ ifeq (, $(shell which richgo)) $(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 ********************) @@ -27,11 +27,6 @@ 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 ./... |