Skip to content

Commit c1cd7c6

Browse files
committed
Makefile: make VERSION not have v prefix
Signed-off-by: Dr. Jan-Philip Gehrcke <[email protected]>
1 parent 42586b0 commit c1cd7c6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

deployments/container/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ ifeq ($(IMAGE_NAME),)
2727
IMAGE_NAME := $(REGISTRY)/$(DRIVER_NAME)
2828
endif
2929

30-
IMAGE_VERSION := $(VERSION)
30+
# Here we would like to use the v prefix.
31+
IMAGE_VERSION := $(vVERSION)
3132

3233
IMAGE_TAG ?= $(IMAGE_VERSION)-$(DIST)
3334
IMAGE = $(IMAGE_NAME):$(IMAGE_TAG)

versions.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ MODULE := github.com/NVIDIA/$(DRIVER_NAME)
1818

1919
REGISTRY ?= nvcr.io/nvidia/cloud-native
2020

21-
VERSION ?= v25.3.0-rc.1
21+
# semver-compliant, i.e. w/o a v prefix
22+
VERSION ?= 25.3.0-rc.1
2223

2324
# vVERSION represents the version with a guaranteed v-prefix
2425
vVERSION := v$(VERSION:v%=%)

0 commit comments

Comments
 (0)