From 9724466c876c72ac0b643b73cee56dc195273f52 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Mon, 7 Dec 2020 17:22:48 -0500 Subject: [PATCH] make: use dot slash for current act installed Signed-off-by: Alfredo Deza --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 992b722b..6cc4e4e6 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ help: run: ## Run all Github Action steps as defined in the workflows directory @for job in $(shell egrep "\w+:$$" workflows/tests.yml | grep -v 'with:\|jobs:\|steps:' | cut -d ' ' -f 3 | cut -d ':' -f 1); do \ printf "$(BOLD)$(CYAN)Running Step: %-35s$(RESET)\n" $$job; \ - act -v -W workflows -j $$job > tests/functional/output/$$job.output 2>&1; \ + ./act -v -W workflows -j $$job > tests/functional/output/$$job.output 2>&1; \ echo $$? >> tests/functional/output/$$job.output; \ cat tests/functional/output/$$job.output; \ done