summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-06-08 12:36:06 -0400
committerGitHub <noreply@github.com>2020-06-08 12:36:06 -0400
commitb8acc851bb472c7ea9674bf1bf8ca3812ff2ab24 (patch)
tree383a0cd2440c4ec8d8b630008b2d36efa99872bb /Makefile
parent2869cce1d53aedfe2500f3d921fb901dd5994690 (diff)
parenta5facca78fed010552339a6644dd8ef1bb0fa229 (diff)
downloadpodman-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--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1d30d2534..67de05f57 100644
--- a/Makefile
+++ b/Makefile
@@ -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 \