Fix conditional to check that minikube should start

This commit is contained in:
Seth Foster 2021-07-19 11:05:05 -04:00
parent 81eb3be8d4
commit d346dbb8ba
No known key found for this signature in database
GPG Key ID: 86E90D96F7184028

View File

@ -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;