Skip to content

Commit

Permalink
fix versioning (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
anilcse authored Aug 8, 2022
1 parent 84cc2f9 commit 6ae7171
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

PACKAGES_NOSIMULATION=$(shell go list ./... | grep -v '/simulation')
PACKAGES_SIMTEST=$(shell go list ./... | grep '/simulation')
VERSION := $(shell echo $(shell git describe --always --match "v*") | sed 's/^v//')

VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')

TMVERSION := $(shell go list -m github.com/tendermint/tendermint | sed 's:.* ::')
COMMIT := $(shell git log -1 --format='%H')
LEDGER_ENABLED ?= true
Expand Down

0 comments on commit 6ae7171

Please sign in to comment.