Skip to content

Commit

Permalink
Merge branch 'fix-tag-separator' into 'main'
Browse files Browse the repository at this point in the history
Fix tag separator for version strings

See merge request nvidia/container-toolkit/libnvidia-container!237
  • Loading branch information
Evan Lezar committed Nov 27, 2023
2 parents f30a9f4 + 684aba5 commit 5c75904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ PATCH := $(word 3,$(VERSION_PARTS))
VERSION := $(LIB_VERSION)
TAG := $(LIB_TAG)
BUILD := $(LIB_BUILD)
VERSION_STRING := $(LIB_VERSION)$(if $(TAG),-$(TAG),)$(if $(BUILD),+$(BUILD),)
VERSION_STRING := $(LIB_VERSION)$(if $(TAG),~$(TAG),)$(if $(BUILD),+$(BUILD),)

0 comments on commit 5c75904

Please sign in to comment.