mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
use if
This commit is contained in:
parent
5ff2a438ea
commit
8db6a3a25b
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -242,7 +242,7 @@ test-iso:
|
||||||
$(call run_tests,iso,install)
|
$(call run_tests,iso,install)
|
||||||
|
|
||||||
# flapak tests
|
# flapak tests
|
||||||
[ -n "$(FLATPAK_REMOTE_REFS)" ] && ( $(call run_tests,iso,flatpak) )
|
if [ -n "$(FLATPAK_REMOTE_REFS)" ]; then $(call run_tests,iso,flatpak); fi
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
sudo umount /mnt/install
|
sudo umount /mnt/install
|
||||||
|
|
@ -266,6 +266,6 @@ test-vm: ansible_inventory
|
||||||
$(call run_tests,vm,install)
|
$(call run_tests,vm,install)
|
||||||
|
|
||||||
# flapak tests
|
# 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
|
.PHONY: clean install-deps install-test-deps test test-iso test-vm
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue