From d57a91ec8c43642b1812539503153ec59e32847f Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Tue, 5 Jan 2021 21:24:09 -0600 Subject: [PATCH] Remove the first `v` from the beginning of version name --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9942ef5..3863a52 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION ?= $(shell git tag --points-at HEAD) +VERSION ?= $(shell git tag --points-at HEAD | sed 's/^v//') VERSION += 0-git-$(shell git rev-parse --short HEAD) VERSION := $(word 1, $(VERSION))