diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-08 12:36:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-08 12:36:06 -0400 |
commit | b8acc851bb472c7ea9674bf1bf8ca3812ff2ab24 (patch) | |
tree | 383a0cd2440c4ec8d8b630008b2d36efa99872bb /Makefile | |
parent | 2869cce1d53aedfe2500f3d921fb901dd5994690 (diff) | |
parent | a5facca78fed010552339a6644dd8ef1bb0fa229 (diff) | |
download | podman-b8acc851bb472c7ea9674bf1bf8ca3812ff2ab24.tar.gz podman-b8acc851bb472c7ea9674bf1bf8ca3812ff2ab24.tar.bz2 podman-b8acc851bb472c7ea9674bf1bf8ca3812ff2ab24.zip |
Merge pull request #6515 from vrothberg/v2-enable-ubuntu
V2 enable ubuntu
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -612,7 +612,7 @@ uninstall: GIT_CHECK_EXCLUDE="./vendor:docs/make.bat" $(GOBIN)/git-validation -run DCO,short-subject,dangling-whitespace -range $(EPOCH_TEST_COMMIT)..$(HEAD) .PHONY: install.tools -install.tools: .install.gitvalidation .install.md2man .install.ginkgo .install.golangci-lint ## Install needed tools +install.tools: .install.gitvalidation .install.md2man .install.ginkgo .install.golangci-lint .install.bats ## Install needed tools define go-get env GO111MODULE=off \ @@ -635,6 +635,10 @@ endef .install.golangci-lint: .gopathok VERSION=1.18.0 GOBIN=$(GOBIN) sh ./hack/install_golangci.sh +.PHONY: .install.bats +.install.bats: .gopathok + VERSION=v1.1.0 ./hack/install_bats.sh + .PHONY: .install.pre-commit .install.pre-commit: if [ -z "$(PRE_COMMIT)" ]; then \ |