Skip to content

Commit

Permalink
Handle tags with "v"-prefix.
Browse files Browse the repository at this point in the history
This is to support using go mod, and is necessary until
golang/go#32945 is resolved.
  • Loading branch information
gotgenes committed Aug 28, 2020
1 parent a604ad6 commit ce9d63d
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
@@ -1,5 +1,5 @@
DIST_DIRS := find dist -depth 1 -type d -execdir
VERSION := $(shell git describe --tags)
VERSION := $(patsubst v%,%,$(shell git describe --tags))
PACKAGES := $(shell glide novendor)

build:
Expand Down

0 comments on commit ce9d63d

Please sign in to comment.