From 02f4e8d0c6b9476695cd403a77d4fb7c196284c9 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Thu, 14 Mar 2024 18:25:51 -0400 Subject: [PATCH] remove extra args --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2d4864b..5058868 100644 --- a/Makefile +++ b/Makefile @@ -262,6 +262,6 @@ test-vm: ansible_inventory ansible -i ansible_inventory -m ansible.builtin.wait_for_connection vm $(eval _TESTS = $(filter-out README.md,$(shell ls tests/vm))) chmod +x $(foreach test,$(_TESTS),tests/vm/$(test)) - for test in $(_TESTS); do ./tests/vm/$${test} deploy.iso; done + for test in $(_TESTS); do ./tests/vm/$${test}; done .PHONY: clean install-deps install-test-deps test test-iso test-vm