summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSeth Foster <fosterbseth@gmail.com>2021-07-19 17:05:05 +0200
committerSeth Foster <fosterbseth@gmail.com>2021-07-19 17:05:05 +0200
commitd346dbb8ba7d471d6a7b014c91f1412fc84148ee (patch)
tree35931eab9d716ec2d1e2cf49ccd79fe94479bbc9 /Makefile
parentMerge pull request #10629 from nixocio/ui_issue_5687 (diff)
downloadawx-d346dbb8ba7d471d6a7b014c91f1412fc84148ee.tar.xz
awx-d346dbb8ba7d471d6a7b014c91f1412fc84148ee.zip
Fix conditional to check that minikube should start
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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;