From 8db6a3a25b17d00d1664755e18087323fa9163fc Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Fri, 15 Mar 2024 09:12:16 -0400 Subject: [PATCH] use if --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 079022b..d797b7a 100644 --- a/Makefile +++ b/Makefile @@ -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