gotify / cli

A command line interface for pushing messages to gotify/server.
MIT License
444 stars 58 forks source link

Makefile missing definition of GIT_TAG #64

Open SeedDMS opened 6 months ago

SeedDMS commented 6 months ago

Add

GIT_TAG=$(shell git tag) to the makefile

SeedDMS commented 6 months ago

Sorry, it must be

GIT_TAG=$(shell git tag | tail -1)

jmattheis commented 6 months ago

Yeah, this tag was previously supplied by the build system. It certainly could be added as variable there.