cli
cli copied to clipboard
Makefile missing definition of GIT_TAG
Add
GIT_TAG=$(shell git tag)
to the makefile
Sorry, it must be
GIT_TAG=$(shell git tag | tail -1)
Yeah, this tag was previously supplied by the build system. It certainly could be added as variable there.