From d346dbb8ba7d471d6a7b014c91f1412fc84148ee Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Mon, 19 Jul 2021 11:05:05 -0400 Subject: Fix conditional to check that minikube should start --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0526a6c65f..e0301f215f 100644 --- a/Makefile +++ b/Makefile @@ -470,7 +470,7 @@ CLUSTER_NODE_COUNT ?= 1 MINIKUBE_CONTAINER_GROUP ?= false docker-compose-sources: .git/hooks/pre-commit - @if [ $(MINIKUBE_CONTAINER_GROUP) ]; then\ + @if [ $(MINIKUBE_CONTAINER_GROUP) = true ]; then\ ansible-playbook -i tools/docker-compose/inventory tools/docker-compose-minikube/deploy.yml; \ fi; -- cgit v1.2.3