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

make for just creates a list

This commit is contained in:
Jason N. 2024-03-07 11:40:43 -05:00
parent 1744eadda3
commit 88f597b575

View file

@ -206,7 +206,7 @@ test-iso:
test-vm:
$(eval _TESTS = $(filter-out README.md,$(shell ls tests/vm)))
$(foreach test,$(_TESTS),chmod +x tests/vm/$(test))
$(foreach test,$(_TESTS),./tests/vm/$(test) deploy.iso)
chmod +x $(foreach test,$(_TESTS),tests/vm/$(test))
for test in $(_TESTS); do ./tests/vm/${test} deploy.iso; done
.PHONY: clean install-deps test test-iso test-vm