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

export so available

This commit is contained in:
Jason N. 2024-04-29 21:36:53 -04:00
parent d69becb34d
commit 6a2000011a

View file

@ -34,11 +34,11 @@ _TEMPLATE_VARS := ARCH IMAGE_NAME IMAGE_REPO _IMAGE_REPO_DOUBLE_ESCA
_VOLID := $(firstword $(subst -, ,$(IMAGE_NAME)))-$(ARCH)-$(IMAGE_TAG)
ifeq ($(findstring redhat.repo,$(REPOS)),redhat.repo)
_RHEL := true
export _RHEL := true
else ifeq ($(findstring centos.srepo,$(REPOS)),centos.srepo)
_RHEL := true
export _RHEL := true
else
_RHEL := false
export _RHEL := false
endif
ifeq ($(_RHEL),true)