Skip to content

Commit a73ddba

Browse files
authored
fix: missing conditional in assignment operator for BUNDLE_OCP_VERSIONS (Mellanox#1618)
bugfix: the `?=` assignment operator is required for shell env var overrides of values, as used in other variables here.
2 parents b4370ed + faa4bbd commit a73ddba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ IMAGE_NAME?=network-operator
4949
CONTROLLER_IMAGE=$(REGISTRY)/$(IMAGE_NAME)
5050
IMAGE_BUILD_OPTS?=
5151
BUNDLE_IMG?=network-operator-bundle:$(VERSION)
52-
BUNDLE_OCP_VERSIONS=v4.15-v4.18
52+
BUNDLE_OCP_VERSIONS?=v4.15-v4.18
5353
# BUNDLE_GEN_FLAGS are the flags passed to the operator-sdk generate bundle command
5454
BUNDLE_GEN_FLAGS ?= -q --overwrite --version $(VERSION) $(BUNDLE_METADATA_OPTS)
5555
BUILD_ARCH= amd64 arm64

0 commit comments

Comments
 (0)