Include version into bundle name

This commit is contained in:
Hanzei 2018-09-18 08:19:42 +02:00
parent 8cb9ff92df
commit ed143d89d4
No known key found for this signature in database
GPG key ID: 69A2DEFD98937BA0
2 changed files with 11 additions and 4 deletions

View file

@ -13,6 +13,12 @@ ifeq ($(PLUGIN_ID),)
$(error "Cannot parse id from $(MANIFEST_FILE)")
endif
# Extract the plugin version from the manifest.
PLUGIN_VERSION ?= $(shell build/bin/manifest version)
ifeq ($(PLUGIN_VERSION),)
$(error "Cannot parse id from $(MANIFEST_FILE)")
endif
# Determine if a server is defined in the manifest.
HAS_SERVER ?= $(shell build/bin/manifest has_server)