From dc41fef086ccdee15e8c3e8ed947310aafdce44d Mon Sep 17 00:00:00 2001 From: Mark Bolwell Date: Fri, 27 Jan 2023 14:03:20 +0000 Subject: [PATCH] updated Signed-off-by: Mark Bolwell --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c8bcd9c..5d7a9b3 100755 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ GALAXY=ansible-galaxy -ANSIBLE_LINT=ansible-lint +ANSIBLE_LINT='/usr/local/bin/ansible-lint' ANSIBLE_FILE=site.yml all: help @@ -20,7 +20,7 @@ galaxy-install: $(GALAXY) install -r ./collections/requirements.yml ansible-lint: - $(ANSIBLE-LINT) $(ANSIBLE_FILE) + $(ANSIBLE_LINT) $(ANSIBLE_FILE) yamllint: git ls-files "*.yml"|xargs yamllint @@ -28,5 +28,5 @@ yamllint: pip-requirements: @echo 'Python dependencies:' @cat requirements.txt - $(ANSIBLE_LINT) install -r requirements.txt + pip3 install -r requirements.txt