1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 19:07:54 +01:00
This commit is contained in:
Jason N. 2024-03-15 09:12:16 -04:00
parent 5ff2a438ea
commit 8db6a3a25b

View file

@ -242,7 +242,7 @@ test-iso:
$(call run_tests,iso,install)
# flapak tests
[ -n "$(FLATPAK_REMOTE_REFS)" ] && ( $(call run_tests,iso,flatpak) )
if [ -n "$(FLATPAK_REMOTE_REFS)" ]; then $(call run_tests,iso,flatpak); fi
# Cleanup
sudo umount /mnt/install
@ -266,6 +266,6 @@ test-vm: ansible_inventory
$(call run_tests,vm,install)
# flapak tests
[ -n "$(FLATPAK_REMOTE_REFS)" ] && ( $(call run_tests,vm,flatpak) )
if [ -n "$(FLATPAK_REMOTE_REFS)" ]; then $(call run_tests,vm,flatpak); fi
.PHONY: clean install-deps install-test-deps test test-iso test-vm