From 30dbffe211565c0652714be20f6b09ce632c2266 Mon Sep 17 00:00:00 2001 From: Srinivas Baride Date: Wed, 9 Aug 2023 00:44:03 +0530 Subject: [PATCH] Fix version issue in the Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f7fd00af..a94bcb34 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ .DEFAULT_GOAL := default -VERSION := $(shell git describe --tags | sed 's/^v//' | rev | cut -d - -f 2- | rev) +VERSION := $(shell git describe --tags | sed 's/^v//') COMMIT := $(shell git log -1 --format='%H') TENDERMINT_VERSION := $(shell go list -m github.com/tendermint/tendermint | sed 's/.* //')