From fcf1d02afcc21f9be3ac20f710b7ca4e39b5d9bd Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Tue, 6 Sep 2022 10:50:50 +0300 Subject: [PATCH] [#414] make: Fix commit abbrev length in version Make it uniform across all our repos. Signed-off-by: Pavel Karpy --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9cea12a..25324e9 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ #!/usr/bin/make -f SHELL = bash -VERSION ?= $(shell git describe --tags --match "v*" --dirty --always) +VERSION ?= $(shell git describe --tags --match "v*" --abbrev=8 --dirty --always) .PHONY: dep fmts fmt imports protoc test lint version help