From 7b967833424626b6db17226b68d632bbffd173f2 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Sun, 7 Jan 2024 11:36:06 +1300 Subject: [PATCH] Amended requirements path --- {{ cookiecutter.role_name }}/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{ cookiecutter.role_name }}/Makefile b/{{ cookiecutter.role_name }}/Makefile index 2eb888b..aa62221 100644 --- a/{{ cookiecutter.role_name }}/Makefile +++ b/{{ cookiecutter.role_name }}/Makefile @@ -7,7 +7,7 @@ virtualenv: virtualenv --prompt '|> {{ cookiecutter.role_title | lower | replace(' ','_') }} <| ' .venv .venv/bin/pip install --upgrade pip .venv/bin/pip install -r requirements.txt - .venv/bin/ansible-galaxy collection install -r molecule/default/requirements.yml + .venv/bin/ansible-galaxy collection install -r molecule/requirements.yml @echo @echo "VirtualENV Setup Complete. Now run: source .venv/bin/activate" @echo