From d9dd1e7acfd97d1957126927baeab8f202e57968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sat, 2 Oct 2021 10:52:00 +0200 Subject: [PATCH] Bootstrap venv via Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2cee6f2..a4097e9 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ ansible = venv/bin/ansible-playbook ansible_run = $(activate) && ansible-playbook --inventory localhost, --diff --verbose ./playbook.yml ${ANSIBLE_EXTRA_ARGS} .PHONY: all -all: $(ansible) +all: | venv $(ansible) $(ansible_run) .PHONY: dryrun