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

set rhel for centos as well

This commit is contained in:
Jason N. 2024-04-29 21:11:18 -04:00
parent 1aeb64b20e
commit 5d050efd17

View file

@ -35,6 +35,8 @@ _VOLID := $(firstword $(subst -, ,$(IMAGE_NAME)))-$(ARCH)-$(
ifeq ($(findstring redhat.repo,$(REPOS)),redhat.repo) ifeq ($(findstring redhat.repo,$(REPOS)),redhat.repo)
_RHEL := true _RHEL := true
else ifeq ($(findstring centos.srepo,$(REPOS)),centos.srepo)
_RHEL := true
else else
_RHEL := false _RHEL := false
endif endif