1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

remove extra args

This commit is contained in:
Jason N. 2024-03-14 18:25:51 -04:00
parent 51972852da
commit 02f4e8d0c6

View file

@ -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