We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91cc865 + bad3d66 commit 9941c1aCopy full SHA for 9941c1a
1 file changed
Makefile
@@ -324,10 +324,11 @@ DEP_CONSTRAINT ?= >= 0.0.0
324
ifeq (-,$(findstring -,$(VERSION)))
325
DEP_CONSTRAINT = >= 0.0.0-0
326
endif
327
-# Define SUBPACKAGES variable and set its value from PROVIDERS
328
-SUBPACKAGES := $(PROVIDERS)
329
-# Define XPKG_REG_ORGS variable and set its value from REPO
330
-XPKG_REG_ORGS := $(REPO)
+
+# use PROVIDERS in place of SUBPACKAGES if set
+SUBPACKAGES := $(if $(PROVIDERS),$(PROVIDERS),$(SUBPACKAGES))
+# use REPO in place of XPKG_REG_ORGS if set
331
+XPKG_REG_ORGS := $(if $(REPO),$(REPO),$(XPKG_REG_ORGS))
332
load-pkg: $(UP) build.all
333
@$(INFO) Loading the family providers into the Docker daemon: $(SUBPACKAGES)
334
@for p in $(PLATFORMS); do \
0 commit comments