From 4c64d9d8fd4a8ed4e095954e649f35466b7cbf1e Mon Sep 17 00:00:00 2001 From: Vincent BESANCON Date: Thu, 10 Jan 2019 15:31:38 +0100 Subject: [PATCH] Use tags in ZIP filename --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ffd2d3e..fed2a80 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,13 @@ SHELL = /bin/bash BUNDLE = kodi-steamlink-launcher +VERSION = $(shell git describe --tags) PLUGIN_RESOURCES = plugin.program.steamlink .PHONY: dist dist: dist-clean @mkdir -p dist - @7z a -tzip dist/$(BUNDLE).zip $(PLUGIN_RESOURCES) + @7z a -tzip dist/$(BUNDLE)-$(VERSION).zip $(PLUGIN_RESOURCES) .PHONY: clean clean: