Makefile should not be dependant of direnv or similar
The Makefile needs to be able to use previous ansible installed commands.
This commit is contained in:
parent
a113502d8c
commit
4c30ee7ecc
5
Makefile
5
Makefile
|
|
@ -26,7 +26,10 @@ install-pip-packages: ## Install python3 requirements
|
||||||
|
|
||||||
install-galaxy: ## Install galaxy requirements
|
install-galaxy: ## Install galaxy requirements
|
||||||
$(info --> Install galaxy requirements)
|
$(info --> Install galaxy requirements)
|
||||||
ansible-galaxy collection install -r requirements.yml --force -p $(VENDOR_DIR)/collections
|
@( \
|
||||||
|
source $(VENV_DIR)/bin/activate; \
|
||||||
|
ansible-galaxy collection install -r requirements.yml --force -p $(VENDOR_DIR)/collections; \
|
||||||
|
)
|
||||||
|
|
||||||
install-pre-commit: ## Install pre-commit tool
|
install-pre-commit: ## Install pre-commit tool
|
||||||
$(info --> Install pre-commit tool via `pip3`)
|
$(info --> Install pre-commit tool via `pip3`)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue