summaryrefslogtreecommitdiff
path: root/plugin.mk
diff options
context:
space:
mode:
authorAndrew Belt <andrewpbelt@gmail.com>2021-07-10 07:20:16 -0400
committerAndrew Belt <andrewpbelt@gmail.com>2021-07-10 07:20:16 -0400
commite0436b98a21821c1830da533c4418c654b226a8f (patch)
tree8d83c11def8eb070ac857941351fd8d781ec824e /plugin.mk
parent4c4fdb883cfa759f56d2ba4c662388892c86ad6b (diff)
Use . instead of - to separate plugin package filename elements
Diffstat (limited to 'plugin.mk')
-rw-r--r--plugin.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin.mk b/plugin.mk
index 555dc2f1..d942d61d 100644
--- a/plugin.mk
+++ b/plugin.mk
@@ -79,11 +79,11 @@ else
cp -r --parents $(DISTRIBUTABLES) dist/$(SLUG)/
endif
@# Create ZIP package
- cd dist && tar -c $(SLUG) | zstd -$(ZSTD_COMPRESSION_LEVEL) -o $(SLUG)-"$(VERSION)"-$(ARCH).vcvplugin
+ cd dist && tar -c $(SLUG) | zstd -$(ZSTD_COMPRESSION_LEVEL) -o "$(SLUG)"."$(VERSION)".$(ARCH).vcvplugin
install: dist
mkdir -p "$(RACK_USER_DIR)"/plugins-v2/
- cp dist/$(SLUG)-"$(VERSION)"-$(ARCH).vcvplugin "$(RACK_USER_DIR)"/plugins-v2/
+ cp dist/*.vcvplugin "$(RACK_USER_DIR)"/plugins-v2/
.PHONY: clean dist
.DEFAULT_GOAL := all