Skip to content

Commit 55961cc

Browse files
committed
Makefile: fix version parsing
One bit that was accidentally left out from 047d031
1 parent 1ecb1c7 commit 55961cc

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
@@ -29,7 +29,7 @@ SITE_BASEURL ?=
2929
SITE_DESTDIR ?= _site
3030
JEKYLL_OPTS := -d '$(SITE_DESTDIR)' $(if $(SITE_BASEURL),-b '$(SITE_BASEURL)',)
3131

32-
VERSION := $(shell git describe --tags --dirty --always)
32+
VERSION := $(shell git describe --tags --dirty --always --match "v*")
3333

3434
IMAGE_REGISTRY ?= registry.k8s.io/nfd
3535
IMAGE_TAG_NAME ?= $(VERSION)

0 commit comments

Comments
 (0)