Skip to content

Commit

Permalink
fix the version bug (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
haoel authored Mar 14, 2023
1 parent 8b36e44 commit 56adf27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ MKFILE_DIR := $(dir $(MKFILE_PATH))
RELEASE_DIR := ${MKFILE_DIR}/build/bin

# Version
RELEASE_VER := $(shell git describe --tag --abbrev=0)
RELEASE_VER := $(shell git tag --list --sort=-creatordate "v*" | head -n 1 )

# Go MOD
GO_MOD := $(shell go list -m)
Expand Down

0 comments on commit 56adf27

Please sign in to comment.